View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Salman Salman is offline
external usenet poster
 
Posts: 78
Default getting the column address of an argument to a user defined functi

Hi I want to write a UDF in which I will need to access the column numbers of
function arguments from inside the body of the function. Example code is:

Function UserDefined(leftarg as double, rightarg as double) as double
n=worksheet columnnumber of leftarg
etc.
End function

Is there an easy way to access the column or worksheet address of a
function's arguments?

Thanks.