hexagon logo

Typing a response in report

I want to be able to type in an answer to a question in the report.
Ex. Was part measured before or after coating?
or
Ex. type in material alloy
or a number of yes or no questions

I know about the manual Keyin Dimension, but I don't think I can type words into that.
Parents
  • Below is a basic code. This should get you started, if you need any clarification/want to get more or less fancy with it, let me know and we can tweak it in for you.

    C1 =COMMENT/INPUT,NO,FULL SCREEN=NO,
    Was part measured before OR after coating?
    
    Type correct response and press OK.
    
    1--> Before Coating
    
    2--> After Coating
    SELECT/C1.INPUT
    CASE/1
    ASSIGN/V1="Part was measured before coating"
    COMMENT/REPT,
    V1
    END_CASE/
    CASE/2
    ASSIGN/V1="Part was measured after coating"
    COMMENT/REPT,
    V1
    END_CASE/
    DEFAULT_CASE/
    COMMENT/OPER,NO,FULL SCREEN=NO,AUTO-CONTINUE=NO,
    Invalid input, try again!
    GOTO/C1
    END_DEFAULTCASE/
    END_SELECT/
    
Reply
  • Below is a basic code. This should get you started, if you need any clarification/want to get more or less fancy with it, let me know and we can tweak it in for you.

    C1 =COMMENT/INPUT,NO,FULL SCREEN=NO,
    Was part measured before OR after coating?
    
    Type correct response and press OK.
    
    1--> Before Coating
    
    2--> After Coating
    SELECT/C1.INPUT
    CASE/1
    ASSIGN/V1="Part was measured before coating"
    COMMENT/REPT,
    V1
    END_CASE/
    CASE/2
    ASSIGN/V1="Part was measured after coating"
    COMMENT/REPT,
    V1
    END_CASE/
    DEFAULT_CASE/
    COMMENT/OPER,NO,FULL SCREEN=NO,AUTO-CONTINUE=NO,
    Invalid input, try again!
    GOTO/C1
    END_DEFAULTCASE/
    END_SELECT/
    
Children
No Data