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
  • From idea :
    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
    
    IF/C1.INPUT==1
    ASSIGN/V1="before"
    END IF
    IF/C1.INPUT==2
    ASSIGN/V1="after"
    END IF
    COMMENT/OPER,[COLOR=#ff0000]YES[/COLOR],FULL SCREEN=NO,AUTO-CONTINUE=NO,...........................Yes in red allows displaying on the report...
    "Part was measured " + V1 + " coating"
Reply
  • From idea :
    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
    
    IF/C1.INPUT==1
    ASSIGN/V1="before"
    END IF
    IF/C1.INPUT==2
    ASSIGN/V1="after"
    END IF
    COMMENT/OPER,[COLOR=#ff0000]YES[/COLOR],FULL SCREEN=NO,AUTO-CONTINUE=NO,...........................Yes in red allows displaying on the report...
    "Part was measured " + V1 + " coating"
Children
No Data