Here you go.
Please edit your above post and delete the VBA code or put it in Code Tags as per the forum rules.
Code tags will make it look better, like this:
Option Explicit
Sub RedFuji()
Dim LastRow As Double
Dim RowCtr As Double
Dim ColCtr As Double
Dim LastRow2 As Double
LastRow = Cells(Rows.Count, "A").End(xlUp).Row
ActiveWorkbook.Worksheets("Sheet3").Cells.ClearContents
With Worksheets("Sheet3")
.Cells(1, "A") = "Box #"
.Cells(1, "B") = "Part Name"
.Cells(1, "C") = "Part #"
.Cells(1, "D") = "Qty"
.Cells(1, "E") = "Status"
End With
For RowCtr = 2 To LastRow
For ColCtr = 7 To 31
If Cells(RowCtr, ColCtr) <> "" Then
With Worksheets("Sheet3")
LastRow2 = .Cells(Rows.Count, "A").End(xlUp).Row + 1
.Cells(LastRow2, "A") = Cells(1, ColCtr)
.Cells(LastRow2, "B") = Cells(RowCtr, "A")
.Cells(LastRow2, "C") = Cells(RowCtr, "B")
.Cells(LastRow2, "D") = Cells(RowCtr, ColCtr)
.Cells(LastRow2, "E") = Cells(RowCtr, "AI")
End With
End If
Next ColCtr
Next RowCtr
End Sub
Bookmarks