BlueMonkey
MIS
Hi
Is it possible for an array to be returned from a function?
Thanks in advance
B.M.
Is it possible for an array to be returned from a function?
Thanks in advance
B.M.
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.
Function Func As Integer()
Function Func
()
As Integer()
Dim myArray(2) As Integer
myArray(0) = 23
myArray(1) = 34
myArray(2) = 45
Func = myArray