
Get Last Column And Last Row Using VBA
Sometimes it is very necessary you get the last Column or last Row of your dataset in Excel This is a simple VBA code to get the Last Column and Last Row in your dataset
|
1 2 3 4 |
Sub lastRow1() lastRow2 = Cells(Rows.Count, 2).End(xlUp).Row End Sub |
What the above code does is that, we are using the Cells object which takes ROW and COLUMN

