I'm trying to create multiple arrays containing our companies departments in vba. I have basic coding skills but cant seem to get the syntax down right. This is essentially what i am trying to do. Ill post the methods i have tried.
Dim Bitman(2) As String
Bitman(0) = "Charlotte"
Bitman(1) = "Raleigh"
Bitman(2) = "Wilmington"
and
Dim Bitman("Charlotte", "Raleigh", "Wilmington")
I have also tried looking up the solution on here but nothing has helped. This seems very basic and easy and i know i have the logic down, i just need to know how to tell the computer.