Ark68
Well-known Member
- Joined
- Mar 23, 2004
- Messages
- 4,435
- Office Version
-
- 365
- 2016
- Platform
-
- Windows
How do I incorporate a variable into a range statement?
In the code below, I want to define a range between A1 and J{whatever the last row is}
In the code below, I want to define a range between A1 and J{whatever the last row is}
Rich (BB code):
llastrow = Range("A65536").End(xlUp).Row
MsgBox ("The Last Row Is: ") & llastrow
With .Range("A1:J??????")