js22 Posted April 11, 2007 Posted April 11, 2007 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
Raybaudi Posted April 11, 2007 Posted April 11, 2007 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
js22 Posted April 12, 2007 Author Posted April 12, 2007 Thanks for the post. That did the trick. js22
Recommended Posts
This topic is 6436 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now