I want to write a custom worksheet function that uses a class that I have defined as argument. I have tried to do the following:
I created a class named Wrapper:
Private m_value As Integer
Public Property Get value() As Integer
value = m_value
End Property
Public Property Let value(value As Integer)
m_value = value
End Property
Then I wrote two functions:
Function make_wrapper(value As Integer) As wrapper
Set make_wrapper = New wrapper
make_wrapper.value = value
End Function
Function square(wrapper As wrapper) As Integer
square = wrapper.value * wrapper.value
End Function
If I chain those function directly from VBA, everything works as I expected
Sub doit()
MsgBox (square(make_wrapper(7)))
End Sub
displays 49.
If I try to call the function directly from excel it does not work. If I type "=square(make_wrapper(7))" in a cell, it displays "#VALUE!". What am I doing wrong? Is this possible at all?
squareis never called with those two formulas like that - maybe Excel stops immediately when it receives a non-standard value in a formula? You could define a separate function that is a function to essentially returnsquare(make_wrapper(foo)) as integerinstead (which will work, even from an Excel sheet). – enderland Sep 3 '12 at 15:19wrapperreturned from the first functionmake_wrapperin a UDF. Try re-writing to output a known type such asVariant– ooo Sep 3 '12 at 15:50wrapperin function square. I'm almost certain this can't be done via a UDF. – ooo Sep 3 '12 at 16:02make_wrappercall sort of works - if you set a breakpoint in the code and enter=make_wrapper(7)in a cell you can see that the code runs OK, but the cell only displays#VALUE!. The call tosquarefails directly, a breakpoint in the code is never reached. Conclusion: it seems @ooo is correct. – Olle Sjögren Sep 3 '12 at 17:10