wwat Posted December 19, 2008 Posted December 19, 2008 When programing an 'action' the program provides 8 options, the first 3 being: Run (If) Run Then Run Else I'm trying to work out what the difference is between the three. Any help appreciated. Thanks, Wayne
FRR Posted December 19, 2008 Posted December 19, 2008 Wayne, Run (If) Runs the code from the top of the program. The Then code will only be executed if the IF conditions are True. The Else code will be executed if the IF conditions are False. Run Then Runs the Then code regardless of the state of the IF conditions. Run Else Runs the Else code regardless of the state of the IF conditions. Hope this helps. Frank
Algorithm Posted December 19, 2008 Posted December 19, 2008 Hello Wayne, Run Then and Run Else are fairly self-explanatory; they run the code in the Then clause or the Else clause, respectively. Run (If) evaluates the If clause and runs either the Then or the Else clause, depending on whether the If is True or False. If the If clause is empty, then the Then clause is run.
wwat Posted December 19, 2008 Author Posted December 19, 2008 Thanks for sheding some light on that enigma. Many thanks, Wayne
Recommended Posts