hexagon logo

Flow Control Using Yes/No Issue

I'm using a series of Yes/No Questions to dictate what is measured and reported vs what is not. My 1st question is essentially "Are all features being measured": If yes, it skips the following questions. The issue is however that when it skips the following questions, their YES/NO answers are still considered later in the program to decide what to skip instead of defaulting to any given value and is effecting the capability of my program. Is there any way for me to get questions that are skipped by If/goto commands to reset to a default value such as yes?

Edit:
I figure I can add "IF Q1=Yes, Goto [label immediately after relevant IF Goto command giving me issues]" to fix the issue
I'm more curious if there are any other ways to accomplish this however, such as but not limited to defaulting to yes for skipped questions
Parents
  • Myself, I would program the features in sections and use IF/GOTO statements. Use an operator INPUT comment to select what is getting checked
    oper/input
    1=thru OPERATION 1
    2=thru OPERATION 2
    3=thru OPERATION 3
    and so on
    10=finished part

    The use the IF/GOTO to skip what isn't being checked.
    The program in REVERSE order (I would) so that FINISHED PART is first, next to last operation is next, and so on, that way it will just run from the "GOTO" label tot he end of the program. This way tends to help avoid PROBE ROTATION issues.
Reply
  • Myself, I would program the features in sections and use IF/GOTO statements. Use an operator INPUT comment to select what is getting checked
    oper/input
    1=thru OPERATION 1
    2=thru OPERATION 2
    3=thru OPERATION 3
    and so on
    10=finished part

    The use the IF/GOTO to skip what isn't being checked.
    The program in REVERSE order (I would) so that FINISHED PART is first, next to last operation is next, and so on, that way it will just run from the "GOTO" label tot he end of the program. This way tends to help avoid PROBE ROTATION issues.
Children
No Data