User defined function using a worksheetfunction
Posted by Russell on September 03, 1999 10:16 AM
I'm new at using user defined functions and VBA so please pardon my ignorance. But what is wrong with this simple function (my original function was more complex but I simplified it to help debug)? When using this function I get #VALUE!
Thanks.
Function lq3(inrange)
Dim rkrange As range
Dim count As WorksheetFunction
count (inrange)
lq3 = count
End Function