I have 6 String variables: level1, level2, ..., level6, which all of them have String values
Also there is an Integer variable called Nr = 3.
I want to display in some msgboxes all the first three levels such as this: ( with the text: cd in front of the message )
For incr=1 To Nr
Msgbox "cd "+level+incr
Next
But it doesn't show me any prompts.
The body of For function should be after the Next statement? Thanks!
I appreciate your time and your help!