View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
Dave F Dave F is offline
external usenet poster
 
Posts: 2,574
Default help on UDF code

OK, that works, thanks.

What do you mean by the appearance of recursion?


--
Brevity is the soul of wit.


"Gary''s Student" wrote:

Avoid the appearance of recursion:

Function Reciprocal(a)
Reciprocal = (1 / a)
End Function


--
Gary''s Student


"Dave F" wrote:

I have the following code to create a UDF to calculate reciprocals:

Function Reciprocal(a)
Reciprocal(a) = (1 / a)
End Function

The code is in a module.

I get #VALUE! errors when I try to run it. So I think this means that Excel
recognizes the UDF (otherwise it would return a #NAME error, right?)

So what's the problem here?

--
Brevity is the soul of wit.