Hi Filo,
Sub GotoBottomOfCurrentColumn()
'Tom Ogilvy 2000-06-26
Cells(Rows.Count, ActiveCell.Column).End(xlUp).Select
End Sub
For a toolbar button to go with the above see
http://www.mvps.org/dmcritchie/excel...rs.htm#xl2ktbm
The cell address in column A would be
MsgBox Cells(Rows.Count, 1).End(xlUp).Address(0, 0)
---
HTH,
David McRitchie, Microsoft MVP - Excel
My Excel Pages:
http://www.mvps.org/dmcritchie/excel/excel.htm
Search Page:
http://www.mvps.org/dmcritchie/excel/search.htm
"Filo" <(E-Mail Removed)> wrote in message news:82B3D51C-0962-4B93-9FA0-(E-Mail Removed)...
> How can I retrieve the address of the last non empty cell in column A,
> starting from the bottom of column A?
>
> Thank you!