This is what I started with, it was to copy data from our master Sign In sheet to our Credit card report. All listed in column K with "RLCC" or "RPCC" was to copy columns J, I, H, O from Sign In to columns A, B, C, D on Credit Card report. This is the code that was working for that perfectly:

Private Sub Worksheet_Change(ByVal Target As Range)
'For Sign In  Sheet1)

Dim Crn As Long         'Row number for CREDIT_CARD sheet
Dim Cws As Worksheet    'Worksheet CREDIT_CARD
Dim Hrn As Long         'Row number for HP_DEPOSIT sheet
Dim Hws As Worksheet    'Worksheet HP_DEPOSIT
Dim Status As String    'String for "Completed - TRACS" on Deposits reports cell "B"

Status = "Completed - TRACS"        'String for "Completed - TRACS" on Deposits reports cell "B"

Set Cws = Sheets("CREDIT_CARD")     'Worksheet CREDIT_CARD
Set Hws = Sheets("HP_DEPOSIT")      'Worksheet HP_DEPOSIT

    If Target.Cells.Count > 1 Then Exit Sub
    
    If Target.Column = 11 Then

        If Target.Value = "" Then Exit Sub

        'When entering data in a cell in SIGN_IN sheet Col K, If it has value of "RLCC" or "RPCC" then copy
        'cells "J", "I", "H", "O" from SIGN_IN to CREDIT_CARD Report Cells "A", "B", "C", "D".

        Crn = Cws.Cells(Cws.Rows.Count, "A").End(xlUp).Row + 1
        
        If Target.Value = "RLCC" Or Target.Value = "RPCC" Then
            Range("J" & Target.Row).Copy Cws.Range("A" & Crn)   'Copy SIGN_IN "J" & Paste to CREDIT_CARD Report "A" Tow Sheet #
            Range("I" & Target.Row).Copy Cws.Range("B" & Crn)   'Copy SIGN_IN "I" & Paste to CREDIT_CARD Report "B" DR #
            Range("H" & Target.Row).Copy Cws.Range("C" & Crn)   'Copy SIGN_IN "H" & Paste to CREDIT_CARD Report "C" Auth. #
            Range("O" & Target.Row).Copy Cws.Range("D" & Crn)   'Copy SIGN_IN "O" & Paste to CREDIT_CARD Report "D" CAP PD ("X") or Not ""


        End If
    End If

    'When entering data in a cell in SIGN_IN sheet Col K, if it has value of "RLMO" or "RPMO" And Range("O" & Target.Row) = "X" then End If , Else copy cells "I", "B2", "T", "R", "S" from SIGN_IN to HP_DEPOSIT Report Cells "A", "C", "D", "E", "F" enter Status String in cell "B".
   
    Hrn = Hws.Cells(Hws.Rows.Count, "A").End(xlUp).Row + 1
    
    If Target.Value = "RLMO" Or Target.Value = "RPMO" And Range("O" & Target.Row) =  "X" Then  End If
    Else
        Range("I" & Target.Row).Copy Hws.Range("A" & Hrn)   'Copy & Paste = DR # from SIGN_IN Check 1
        Range("B2").Copy Hws.Range("C" & Hrn)               'Copy & Paste = Form Date from SIGN_IN Check 1
        Hws.Range("B" & Hrn) = Status                       'Copy & Paste = Status String Check 1
        Range("T" & Target.Row).Copy Hws.Range("D" & Hrn)   'Copy & Paste = Check Amount from SIGN_IN Check 2
        Range("R" & Target.Row).Copy Hws.Range("E" & Hrn)   'Copy & Paste = Check Name from SIGN_IN Check 1
        Range("S" & Target.Row).Copy Hws.Range("F" & Hrn)   'Copy & Paste = Check # from SIGN_IN Check 1

    End If
The problem started when I tried to add the routine to add copying the second and third checks to the HP Deposit routine. We need to do this because we sometimes have people come in with two or three checks for the total amount of $150.00. After the first check was entered I wanted column U checked if it is blank to End If, if it is not blank to copy cells U, B2, X, V, W from Sign In to HP Deposit cells A, C, D, E, F and insert String into cell B then check cell Y on Sign In if it is blank then End If, if not start routine for third check entry. Copy cells Y, B2, AB, Z, AA from Sign In to HP Deposit cells A, C, D, E, F and insert String into cell B.

After I get that routine to work I need to the same routine to run copying the same cells from Sign In to the CAP PD DEPOSIT if the Sign In column O has "X".
Thank you for your help.