View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.newusers
oscar
 
Posts: n/a
Default Get cell address from macro function argument

Thank you for your reply.

Is it possible to use that macro in the formula bar?
I tryed with =qwerty(A1) and I got #NAME?

Thank you for your time

"Gary''s Student" wrote:

Yes:

Function qwerty(r As Range) As Integer
MsgBox (r.Offset(0, 1).Address)
qwerty = 0
End Function



--
Gary's Student


"oscar" wrote:

Is it possible to know the address of the cell that is passed as argument to
a macro function? I want to know this to compare to the cell next to the one
passed to the function.