April 11, 200718 yr Hello, I'm wondering if it is possible to run a loop with letters. Something where Set Variable $Var = A Loop Insert Calculation Field: $Var Set Variable $Var = $Var + 1 Exit loop if _____ End Loop So that everytime it loops it goes from A to B to C ... If anyone has any ideas that would be helpful js22
April 11, 200718 yr Set Variable $string = "ABCDE..XYWZ" Set Variable $pos = 1 Loop Set field [ yourField ; Middle ( $string ; $pos ; 1 ) ] Set Variable $pos = $pos + 1 Exit Loop if [ $pos > Lenght ( $string ) ] Pause [ ,5 ] End Loop
Create an account or sign in to comment