Think i already know the answer to this, but can you use letters instead of numbers in a FOR-Next-LOOP? Tried to get it to work a couple of different ways but couldn't get it, thought i would ask.
If you want letters you will need to modify the syntax. Using double quotes fails and sinlge quotes act as comments. [vba]Sub x() Dim i For i = Asc("A") To Asc("J") Debug.Print Chr(i) Next End Sub[/vba]