Reputation: 354
I have a variable returning function in one worksheet That I wish to call from another worksheet. How do I do this?
Function DoUntilOption() As String()
Dim array1(10) As String
Dim matrix2(10, 10) As String
...Processing matrix2...
DoUntilOption = matrix2()
End Function
Upvotes: 0
Views: 45