I have the following simple Macro. The problem is now I want the user to pick which Sheet they want to paste the information on. I have Account_1, Account_2, Account_3, etc. tabs and there may be more the user adds so it is never going to be predetermined. I would like for the user to pick from a list when the Macro starts and it pastes the info in the chosen worksheet, range A4. Is this possible?
Sub MoveData()
Call ShowRows
Selection.Copy
Application.Goto ActiveWorkbook.Sheets("Account 1").Range("A4")
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Call HideRows
End Sub
Cheers,
Guy
Sub MoveData()
Call ShowRows
Selection.Copy
Application.Goto ActiveWorkbook.Sheets("Account 1").Range("A4")
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Call HideRows
End Sub
Cheers,
Guy