If I have a Range object--for example, let\'s say it refers to cell A1 on a worksheet called Book1. So I know that calling Address()
A1
Book1
Address()
Dim rg As Range Set rg = Range("A1:E10") Dim i As Integer For i = 1 To rg.Rows.Count For j = 1 To rg.Columns.Count rg.Cells(i, j).Value = rg.Cells(i, j).Address(False, False) Next Next