engped
Electrical
- Nov 9, 2001
- 2
I would like to know if it is possible to get 2 or 3 values from the same function that was generated in the VBA Editor from Excel.
If it is, how could i do it?
If it is, how could i do it?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Public Function test() As Variant
test = Array(1, 2, 3)
End Function
=test()