horizonflame
Board Regular
- Joined
- Sep 27, 2018
- Messages
- 186
- Office Version
- 2013
Hi All,
I want to post to the first blank cell in Row 'L' after L3, but it is pasting to B3. Any correction pls?
Sub DatesRaw()
Sheets("DataRaw").Select
Application.Goto Reference:="R2C1:R10000C4,R2C8:R10000C8"
Selection.Copy
Sheets("DatesRaw").Range("L3").End(xlToLeft).Offset(0, 1).PasteSpecial xlPasteValues
End Sub
I want to post to the first blank cell in Row 'L' after L3, but it is pasting to B3. Any correction pls?