Or, you can try this on a copy of your workbook to see if it works correctly:
Sub danacreilly()
Dim LastRowNo As Long, LastRowNoShtAA As Long
Dim FlRngCnt As Long, RwNo As Long
Dim RngToChk As Range, RwRng As Range, FlRng As Range, ToRng As Range
Dim cl As Variant
LastRowNo = Sheets(1).Cells(Rows.Count, 1).End(xlUp).Row
Set RngToChk = Sheets(1).Range(Sheets(1).Cells(1, 1), Sheets(1).Cells(LastRowNo, 1))
For Each cl In RngToChk
If cl.Interior.ColorIndex = xlNone Then
RwNo = cl.Row
Set RwRng = Sheets(1).Range("IV" & RwNo).End(xlToLeft)
Set FlRng = Sheets("Sheet1").Range(cl, RwRng)
FlRngCnt = FlRng.Cells.Count
With Sheets(2) 'Sheets("ActiveAccounts")
LastRowNoShtAA = .Cells(Rows.Count, 1).End(xlUp).Row + 1
Set ToRng = .Cells(LastRowNoShtAA, 1).Resize(, FlRngCnt)
ToRng.Cells.Value = FlRng.Cells.Value
End With
End If
Next cl
End Sub
Bookmarks