I have 9 variables that i have declared as follows:
I then have a process that loops through a string to pull out e-mail addresses that are seperated by a comma. I am trying to assign each e-mail address to the variables that i have declared for later use.
I tried to add the following to my loop, but it didn't work:
I was hoping the above code would come out like EmailAddress1="Email Address Goes Here"
Is this even possible to do? If not, how can i increment variables along with my loop?
Thank You!
Code:
Dim EmailAddress1, EmailAddress2, EmailAddress3, EmailAddress4, EmailAddress5, EmailAddress6, EmailAddress7, EmailAddress8, EmailAddress9 As String
I then have a process that loops through a string to pull out e-mail addresses that are seperated by a comma. I am trying to assign each e-mail address to the variables that i have declared for later use.
I tried to add the following to my loop, but it didn't work:
Code:
EmailAddress & counternumber = "Email Address Goes Here"
I was hoping the above code would come out like EmailAddress1="Email Address Goes Here"
Is this even possible to do? If not, how can i increment variables along with my loop?
Thank You!