I am creating a large macro code for automating my daily office report. I am using following code for getting Last row.
Lrow = ActiveSheet.UsedRange.SpecialCells(xlLastCell).Row
in what cases this code will end up giving wrong results.
Like using "xlup from last cell of column" is useless when data is not in tabular form. Eg. column 1 have 10 cells & column 2 have 25 cells.