Option Explicit
function myfunct(something as somethingelse) as something
msgbox application.caller.address & vblf _
& application.caller.parent.name & vblf _
& application.caller.parent.parent.name
End function
(application.caller is what you're looking for)
> Hi,
>
[quoted text clipped - 5 lines]
>
> Is there any way to do this?

Signature
Dave Peterson
Chris - 18 Sep 2007 14:26 GMT
Thanks!
Exactly what I've been looking for
> Option Explicit
> function myfunct(something as somethingelse) as something
[quoted text clipped - 20 lines]
>
> Dave Peterson