Sub test()
Dim a, i&, ii&, n&
a = Sheets("sheet1").[a1].CurrentRegion.Value2
ReDim b(1 To UBound(a, 1) * UBound(a, 2), 1 To 2)
b(1, 1) = "Award Fields": b(1, 2) = "AWD No": n = 1
For ii = 3 To UBound(a, 2)
For i = 2 To UBound(a, 1)
If a(i, 1) = "" Then a(i, 1) = a(i - 1, 1)
If a(i, ii) = "No" Then
n = n + 1
b(n, 1) = a(i, 1) & IIf(a(i, 2) <> "", " / " & a(i, 2), "")
b(n, 2) = a(1, ii)
End If
Next
Next
With Sheets("sheet2").Columns("a:b")
.ClearContents
.Resize(n) = b
.Columns.AutoFit
End With
End Sub