Hey ExcelatHome
Thanks for the code. I'm trying to insert it into my macro but there's something wrong with my syntax.
I'm not sure how to add that integer into my cell range. Any help is appreciated. This is what I have so far.
Sub Roll_Graph_Data()
'
' Range_Test Macro
Dim LC As Integer
LC = Cells(2, Columns.Count).End(xlToLeft).Column
Range("K5:VLC").Select
Selection.Copy
Range("L5").Select
ActiveSheet.PasteSpecial Format:=3, Link:=1, DisplayAsIcon:=False, _
IconFileName:=False
Sheets("Control").Select
End Sub
Bookmarks