I have a custom function in Excel 2007. It returns array of doubles.
Dim ResultArray(10) As Double
If I use it with Ctrl-Shift-Enter I get 10 results in a row.
I want to access a particular resut within the result array.
Say second result. I'd expect something like =myFn(a,b,c)(2) but it doesnt work....
Is it possible?