excel vba convert cells address

The solution for “excel vba convert cells address” can be found here. The following code will assist you in solving the problem.

‘ From Cells(1,1) to “A1”
MsgBox Cells(1, 1).Address(RowAbsolute:=False, ColumnAbsolute:=False)

‘ From “A1” to Cells(1,1)
MsgBox Range(“A1”).Row & “, ” & Range(“A1”).Column

Thank you for using DeclareCode; We hope you were able to resolve the issue.

More questions on [categories-list]

Similar Posts