OK Rockyw,
Find the attached with the VBA code to do what you want that looks like this:
Option Explicit
Sub PackToCDColums()
Dim RowCtrA As Double
Dim LastRowA As Double
Dim LastRowC As Double
'Clear Contents in C and D Columns
LastRowC = Cells(Rows.Count, "C").End(xlUp).Row
Range(Cells(3, "C"), Cells(LastRowC, "D")).ClearContents
'Loop down and copy non blanks from A to C and B to D
LastRowA = Cells(Rows.Count, "A").End(xlUp).Row
For RowCtrA = 3 To LastRowA
If Cells(RowCtrA, "A") <> "" Then
LastRowC = Cells(Rows.Count, "C").End(xlUp).Row + 1
Cells(LastRowC, "C") = Cells(RowCtrA, "A").Value
Cells(LastRowC, "D") = Cells(RowCtrA, "B").Value
End If
Next RowCtrA
End Sub
Bookmarks