Hi, my first time asking questions so please be gentle.
Im trying to use a recorded macro to do the following
copy a preset range of cells from worksheet 1 (INPUT FORM)
open a 2nd worksheet (QRY LOG)
find the next blank row - this is where im stumped!
paste the information
save the 2nd worksheet and close it
ive spent 40 mins searching various similar questions but cant find the
answer - probably due to my very limited understanding of
vb - whenever i try
and pinch code its just not working.
could someone please edit the macro below to do what i require and if
possible explain how it works as it would be nice to understand it as well as
use it.
many thanks
Bry
Sub test1()
'
' test1 Macro
' Macro recorded 04/08/2006 by Bry
'
'
Range("A1:I1").Select
Selection.Copy
Workbooks.Open Filename:="C:\bry\NEW QRY LOG TESTING\QRY LOG.xls"
Range("A10").Select
ActiveSheet.Paste
Application.CutCopyMode = False
ActiveWorkbook.Save
ActiveWorkbook.Close
End Sub