I've come up with the following. It works great to enter several lines of data on Sheet FORM to the next empty row on Sheet MAIN.
But I would like NOT to have to Activate Sheet MAIN inorder to do it.
Actually, I would like to have 2 WorkBooks instead.
Any ideas?
Sub ENTER_TO_DB()
'
' ENTER_TO_DB Macro
'
'
Range("E1:L4").Copy
Sheets("MAIN").Select
Range("M16").Select
Cells.FindNext(After:=ActiveCell).Activate
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False
Sheets("FORM").Select
Application.CutCopyMode = False
End Sub
But I would like NOT to have to Activate Sheet MAIN inorder to do it.
Actually, I would like to have 2 WorkBooks instead.
Any ideas?
Sub ENTER_TO_DB()
'
' ENTER_TO_DB Macro
'
'
Range("E1:L4").Copy
Sheets("MAIN").Select
Range("M16").Select
Cells.FindNext(After:=ActiveCell).Activate
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False
Sheets("FORM").Select
Application.CutCopyMode = False
End Sub