I want to use values from one spreadsheet into another spradsheet usingVBA. Would anybody tell me how I could write the code for the same.Thanking you all a lot.
thanx for the support.. but would u please let me knowthat how could I do it with the help of VBA..Please reply.
The following will take the value in A1 of sheet1 and put it in A1 ofsheet2.Sub subCopyA1()Dim vlValue as VariantvlValue = Range("A1").ValueWorksheets("Sheet2").ActivateRange("A1").Value = vlValueEnd Sub