macro range

  • Thread starter Thread starter tlwhite
  • Start date Start date
T

tlwhite

I set my macro up to run on multiple spreadsheets. Unfortunately, the macro
functions are performed for the number of lines in the original spreadsheet.
The macro was recorded using 'ctrl + end' rather than a specific row and
column.

Is there a way to have the macro only apply through 'ctrl + end' ?
Thanks.
 
Hi,

There are several ways of find the last row, last column but you didn't tell
us what you are trying to find.

Here's 2 ways

Last used column in row 1
lastcol = Cells(1, Columns.Count).End(xlToLeft).Column

last used row in a column
lastrow = Cells(Cells.Rows.Count, "A").End(xlUp).Row
--
Mike

When competing hypotheses are otherwise equal, adopt the hypothesis that
introduces the fewest assumptions while still sufficiently answering the
question.
 
Back
Top