I am Trying to run this Code, which will copy the Source sheet Row to Destination Sheet last Row, but my this code giving error 400 while compiling,
Advance Thanks for Help
Sub CopyData()
    Dim sBook_t As String
    Dim sBook_s As String
    Dim sSheet_t As String
    Dim sSheet_s As String
    On Error GoTo Errorcatch
    sBook_t = "C:\Users\Unknown\Desktop\Free\Calculators.xlsx"
    Workbooks.Open (sBook_t)
    sBook_s = "C:\Users\Unknown\Desktop\Free\PRODUCT_35.xlsm"
    Workbooks.Open (sBook_s)
    sSheet_t = "cstdatalist"
    sSheet_s = "cstdata"
    Sheets(sSheet_s).Range("A2").Copy Destination:=Sheets(sSheet_t).Range("A2")
End Sub
 
     
     
    