Convert Cell(3,2) Format To Range("B3") Format
Convert Range("B3") Format To Cell(3,2) Format
This code shows how to switch back and forth between Cell(3,2) Format to Range("B3") Format
Program Code
' Convert From Cell Notation To Range Notation ? Cells(3, 2).Address(RowAbsolute:=True, ColumnAbsolute:=True) & ":" & Cells(10,2).Address(RowAbsolute:=True) $B$3:$B$10 ' Convert From Range Notation to Cell Notation ? "Cells(" & Range("B5").Row & ", " & Range("B5").Column & ")" Cells(5, 2)