Thread: Cell Address
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Don Guillett[_4_] Don Guillett[_4_] is offline
external usenet poster
 
Posts: 2,337
Default Cell Address

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

End Sub


"Thomas" wrote in message
...
How would I define the cell address of the cell above my
activecell?

Thanks in advance