Something like this might work for you. Right click the sheet where the data is imported, View Code and paste. This will add the rows as the cell in column DP changes but not if the row has no data.
Private Sub Worksheet_Change(ByVal Target As Range)
Dim iRange As Range, cell As Range, iRow As Range, rn As Long
Set iRange = Intersect(Range("DP:DP"), Target)
If iRange Is Nothing Then Exit Sub
For Each cell In iRange
Set iRow = Rows(cell.Row)
rn = Worksheets("Sheet2").Range("A" & Rows.Count).End(xlUp).Offset(1).Row
If WorksheetFunction.CountA(iRow) <> 0 Then
iRow.Copy _
Worksheets("Sheet2").Rows(rn)
'iRow.Copy
'Worksheets("Sheet2").Rows(rn).PasteSpecial xlPasteAll
End If
Next cell
End Sub
IF you select a range and Insert > Table, the rows will be shaded alternately. Or select range, Home > Format as Table, and pick a style.
Bookmarks