I am trying to write a macro that copies data from a form (Contractor Entry Form, range "U5:AT5") and pastes it to a database (CONTRACTOR DATABASE).
When a record is edited, it requests the Employee ID# and finds that row on the database, and pastes that row number reference temporarily into cell Contractor Entry Form "L1".
I need to then paste the copied data to the database on that row number (-1) that is referenced in cell "L1". If there is no value in "L1" that means it is a new entry and should then just paste to the last row -- as opposed to pasting over a previous record row.
Help, please. My code is here--
Sub ContractorEntry
    
    Range("U5:AT5").Copy
    Sheets("CONTRACTOR_DATABASE").Select
    
    Dim R As Integer
    R = Worksheets("CONTRACTOR ENTRY").Range("L1").value
    'note-- if there is a value in CONTRACTOR ENTRY L1>0 then 
    '  (it represents a row number --- paste value to that row -1 onto 
    '  Contractor Database sheet.
    If Worksheets("CONTRACTOR ENTRY").Range("L1") > 0 Then
        Sheets("CONTRACTOR_DATABASE").Cells (R -1, 1)
        Selection.PasteSpecial
    End If
    
    Else
        'if there is no value in cell L1 then the following to just paste to the next blank row
        lMaxRows = Cells(Rows.Count, "A").End(xlUpSelection.PasteSpecial.Row
    
        Range("A" & lMaxRows + 1).Select
        Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, _
            SkipBlanks :=False, Transpose:=False
    
       'This returns to the contractor entry form and clears contents
        Sheets("CONTRACTOR ENTRY").Select
        Range("D3:M1").Select
        Selection.ClearContents
      
       'Should go back to Contractor Entry Form for Name and a new entry in cell D3
       Range("D3").Select
    
End Sub 
 
    