I have a last_row and last_column variable.
I get these by doing the following.
last_column = .Cells(1, .Columns.Count).End(xlToLeft).Column
and
last_row = .Range("A" & .Rows.Count).End(xlUp).Row
My question is this, I'm trying to create a selection based on these variables, so that the range goes from E33
to the last row and column. However, I am getting an error. Here is the code.
Range("E33:" & last_column & last_row).Select
Thanks so much for your help!