How to create a UDF to return an array of values with input variab
Function laurie() As Variant
v = Array(1, 2, 3)
laurie = v
End Function
In the worksheet, select cells A1, B1, C1
type:
=laurie() and complete with CNTRL-SHIFT-ENTER
--
Gary''s Student - gsnu200745
"Laurie" wrote:
Hi,
I need to create a UDF to return an array of values with some specified
input variables/values, like inputing the interest rates and a set of periods
of time to get an array of annuity factors.
How can I do this?
I really appreciate any help in this issue.
Thanks a lot in advance,
Laurie
|