I have an array that is read like this:
MyArray(0)='test'
MyArray(1)='test2'
MyArray(2)='test3'
How do I pass this through a function?
Function(MyArray(all_arrays))
What do I put for all_arrays?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You look to want to pass a string before the array.
So, change the Function to :
And you call this function like this:
If you do not need to return a value you should use a Sub.