hexagon logo

Graphical Report control

I am dimensioning a scanned line across the face of a part using Profile of a Line. I have a dozen or more to do like this and it slows the report down considerably. Is there a way to turn on the graphical ONLY when at high limit or over tolerance??
Thanks!
Parents
  • Do a IF/END_IF statement with an analysis command inside of that.

    DIM 13A= PROFILE OF SURFACE OF SET DIMPLE_PLN    FORMANDLOCATION  UNITS=MM ,$
    GRAPH=OFF  TEXT=OFF  MULT=20.00  ARROWDENSITY=100  OUTPUT=BOTH
    AX    NOMINAL        MAX        MIN       +TOL       -TOL        DEV     OUTTOL
    M        0.000     -0.014     -0.115      0.100      0.100      0.115      0.015 <--|----
                IF/13A.OUTTOL>0
                  ANALYSISVIEW/13A,,
                END_IF/
    
Reply
  • Do a IF/END_IF statement with an analysis command inside of that.

    DIM 13A= PROFILE OF SURFACE OF SET DIMPLE_PLN    FORMANDLOCATION  UNITS=MM ,$
    GRAPH=OFF  TEXT=OFF  MULT=20.00  ARROWDENSITY=100  OUTPUT=BOTH
    AX    NOMINAL        MAX        MIN       +TOL       -TOL        DEV     OUTTOL
    M        0.000     -0.014     -0.115      0.100      0.100      0.115      0.015 <--|----
                IF/13A.OUTTOL>0
                  ANALYSISVIEW/13A,,
                END_IF/
    
Children
No Data