OldManExcellor
New Member
- Joined
- May 30, 2011
- Messages
- 45
I have a function:
I want the calling function to get access to the array. I try this but it doesn't work:
How can I get the uniqueitems array back into my calling function so that I can work with it there?
Code:
Function GetUniqueItems(ws As Worksheet) As String()
End Function
I want the calling function to get access to the array. I try this but it doesn't work:
Code:
Dim list() As String
Call list = GetUniqueItems(ws)
How can I get the uniqueitems array back into my calling function so that I can work with it there?