E
Eduardo
I'm trying to copy information to another sheet "Data" to the last row of it.
I tried the macro fro Ron Debruin but is giving me an error "Invalid outside
procedure", can somebody help me, thanks
Dim sourceRange As Range
Dim destrange As Range
Dim Lr As Long
Lr = LastRow(Sheets("Data")) + 1
Set sourceRange = Sheets("Control").Range("A6:L26")
Set destrange = Sheets("Data").Range("A" & Lr)
sourceRange.Copy destrange
End Sub
I tried the macro fro Ron Debruin but is giving me an error "Invalid outside
procedure", can somebody help me, thanks
Dim sourceRange As Range
Dim destrange As Range
Dim Lr As Long
Lr = LastRow(Sheets("Data")) + 1
Set sourceRange = Sheets("Control").Range("A6:L26")
Set destrange = Sheets("Data").Range("A" & Lr)
sourceRange.Copy destrange
End Sub