Macro Goal
After Selecting any range of cells in a first worksheet,
copy contents of the selection
Paste the contents of the selected cells at a second worksheet without using
..paste link:=True.
The cells have to correspond. For instance, content of A2:A4 in the first
worksheet are placed in A2:A4 in the second worksheet. I'm using this
approach for copying formats and values of the selected cells without copying
the entire worksheet.
My approach is not to be specific on calling A2:A4. Therefore using Range
("A2:A4).Select is not an option I need.
I'm trying to get the reference of the first cell in a selected range in the
first worksheet and have the macro automatically move to a second worksheet
and select the first cell corrsonding to the first cell in the selected
range. I hope this make sense.
so far I got this far which pastes the contents starting at the first cell I
last selected in the second worksheet.
Sub copyrangeselected()
Set rng=Selection
rng.copy 'copies cells in my first worksheet
Sheets("Sheet2").Select
Activesheet.Paste
End Sub
Thanks.
Bookmarks