View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Dave Peterson Dave Peterson is offline
external usenet poster
 
Posts: 35,218
Default How can I use SUM in a user defined function procedure?

test = application.sum(....)



John wrote:

can anyone help me find a way to make this function work?

Function test(value, value1, value2)
test = Sum(value, value1, value2)
End Function

(I don't really want to write a UDF to do exactly what a SUM does, but would
like to use a SUM in my function)

tx


--

Dave Peterson