Normally, its enough to know the last row in a specific column. In those cases I normally just use this widely method:
`Getting last row from column A
LastRow = Range("A" & Rows.Count).End(xlUp).row
But when you have several columns (for example 1 to 10) and you need to retrieve the last cell in use in any of these columns, we need something else.