P
PCOR
Hi
I was given this code to copy from one sheet to another
This will copy the range given to sheet 1 A1
How can I modify this macro to make the destination fully flexible.
Thanks
im mycell As Range
' Worksheets.Add
Set mycell = Application.InputBox(prompt:="Select a range", Type:=8)
mycell.Copy Sheets("Sheet2").Range("A1")
I was given this code to copy from one sheet to another
This will copy the range given to sheet 1 A1
How can I modify this macro to make the destination fully flexible.
Thanks
im mycell As Range
' Worksheets.Add
Set mycell = Application.InputBox(prompt:="Select a range", Type:=8)
mycell.Copy Sheets("Sheet2").Range("A1")