I have just had a thought which would make my life a lot easier, but don't have a clue where to start..
Is it possible to apply the following principle for a loop to use a string instead of numbers? For example;
Could I do the same using letters of the alphabet? I don't know how it would work, but something like.
Thanks in advance
Is it possible to apply the following principle for a loop to use a string instead of numbers? For example;
Code:
For i = 1 to 10
msgbox i
Next i
Could I do the same using letters of the alphabet? I don't know how it would work, but something like.
Code:
For i = a,b,c,d,e,f,g,h
msgbox i
Next i
Thanks in advance