Range question
Range(cells(Rows.Count , "A").end(xlUp).offset(-1, 0), cells(Rows.Count,
"S").end(xlUp)).Select
--
HTH...
Jim Thomlinson
"JamesJordan" wrote:
Is it possible to select a range that spans the row right before the
last used row through the last row. I have a table with info that
spans columns A through S. I am wanting to be able to select the last
two rows for colmns A:S to do some formatting. I thought it would look
something liek this, but it keeps showing up as incorrect. i am quite
sure how to write it. I would appreciate any help.
Here is what I have that I know is not quite right.
Range(("A" & Rows.Count - 1):"S" & Rows.Count).Select
|