Sorry about that. I thought the XL2BB showed the code. My apologies as I am new to MrExcel..... Getting ready to sign up for the Virtual Conference. Here is the code and the challenge is that it is just adding to the bottom row or essentially duplicating entries versus overwriting or just posting new entries from the multiple sheets.
Sub CopyOnboarded()
Dim TransIDField As Range
Dim TransIDCell As Range
Dim ATransWS As Worksheet
Dim HTransWS As Worksheet
Set ATransWS = Worksheets("AL")
Set TransIDField = ATransWS.Range("A2", ATransWS.Range("A2").End(xlDown))
Set HTransWS = Worksheets("Onboarded")
For Each TransIDCell In TransIDField
If TransIDCell.Interior.Color = RGB(198, 239, 206) Then
'TransIDCell.Resize(1, 12).Copy Destination:= _
'HTransWS.Range("A1").Offset(HTransWS.Rows.Count - 1, 0).End(xlUp).Offset(1, 0)
End If
Next TransIDCell
HTransWS.Columns.AutoFit
Set ATransWS = Worksheets("CA")
Set TransIDField = ATransWS.Range("A2", ATransWS.Range("A2").End(xlDown))
Set HTransWS = Worksheets("Onboarded")
For Each TransIDCell In TransIDField
If TransIDCell.Interior.Color = RGB(198, 239, 206) Then
TransIDCell.Resize(1, 12).Copy Destination:= _
HTransWS.Range("A1").Offset(HTransWS.Rows.Count - 1, 0).End(xlUp).Offset(1, 0)
End If
Next TransIDCell
HTransWS.Columns.AutoFit