How do I increment a loop using hexadecimal format?
Hello, I want to create a list and populate it with the following entries: AB63, AB64,... AB79, AC63,...AZ79. Unfortunately, I have not been able to figure out how to increment hexadecimally ("J" = Hex(4A) ,etc.) So, for the letters J-O (Hex4A - Hex4F), I created separate loops, which is very cumbersome. Does anyone know of a way to increment hexadecimally, so I can keep this all within one loop? ...