Address, a read-only property, displays the cell address for a Range object in absolute notation (a dollar sign before the column letter and before the row number). : Range « Excel « VBA / Excel / Access / Word
Address, a read-only property, displays the cell address for a Range object in absolute notation (a dollar sign before the column letter and before the row number).
Sub cellAddress()
MsgBox range(cells(1, 1), cells(5, 5)).Address End Sub