Cell Address

T

Thomas

How would I define the cell address of the cell above my
activecell?

Thanks in advance
 
D

Don Guillett

Is this what you want?
Sub defineabove()
x = ActiveCell.Offset(-1).Address
MsgBox x

End Sub
 
Top