View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Robert Kedzie Robert Kedzie is offline
external usenet poster
 
Posts: 2
Default Return cell co-ordinates

Hello Julie,

Try this:

sub sayhi()
dim st as string
st = selection.address
msgbox "you are in " & st
end sub

I just found this in a new book I bought the other day.

TucsonBob