Last Row and Column
"Pubert" wrote in message ...
Is there a VBA Function that will give me the last used
column and row? Or what suggestions does anybody have?
lastRow = Cells(rows.Count, ActiveCell.Column).End(xlUp).row
lastColumn = Cells(ActiveCell.row, Columns.Count).End(xlToLeft).Column
|