Hello
I am trying to uniform my parallelism / perpendicularity report labels to work similarly to our TP one, but I am struggling to get it working (and to make sense of existing working labels like the TP one)
First out TP label template visual structure:
My first attempts (setting aside the graphics / pass / fail section that I intend to handle later):
Line 1:
Line 2: repeating = COUNT(DIM_RPT_DATUM)
Line 3:
In red the section I am struggling more with (but even with those removed the label does not work as intended), so I would love to find out the following:
Edit: forgot the check condition for TOL()
I am trying to uniform my parallelism / perpendicularity report labels to work similarly to our TP one, but I am struggling to get it working (and to make sense of existing working labels like the TP one)
First out TP label template visual structure:
Code:
ID+" DF" | NOM | +TOL | -TOL | ACTUAL | MMC/LMC/RFS | EMPTY | EMPTY | EMPTY | ID+" D"+datumnumber | NOM | +TOL | -TOL | ACTUAL | MMC/LMC/RFS | EMPTY | EMPTY | EMPTY | (repeating section) ID | NOM | +TOL | -TOL | ACTUAL | DEVIATION | GRAPHICS | PASS | FAIL |
Line 1:
Code:
=ID+TOL(" DF",,DIM_OUTTOL:[B][COLOR=#e74c3c]??[/COLOR][/B],0.0,0.0) =TOL(NOMINAL:[B][COLOR=#e74c3c]??[/COLOR][/B],DIM_OUTTOL:[B][COLOR=#e74c3c]??[/COLOR][/B],0.0,0.0) =TOL(F_PLUS_TOL:[B][COLOR=#e74c3c]??[/COLOR][/B],DIM_OUTTOL:[B][COLOR=#e74c3c]??[/COLOR][/B],0.0,0.0) =TOL(F_MINUS_TOL:[B][COLOR=#e74c3c]??[/COLOR][/B],DIM_OUTTOL:[B][COLOR=#e74c3c]??[/COLOR][/B],0.0,0.0) =TOL(DIM_MEASURED:[B][COLOR=#e74c3c]??[/COLOR][/B],DIM_OUTTOL:[B][COLOR=#e74c3c]??[/COLOR][/B],0.0,0.0) =TOL([COLOR=#e74c3c][B][MMC/LMC/RFS][/B][/COLOR]:[B][COLOR=#e74c3c]??[/COLOR][/B],DIM_OUTTOL:[B][COLOR=#e74c3c]??[/COLOR][/B],0.0,0.0)
Code:
=ID+TOL(" D"+ [B][COLOR=#e74c3c]??[/COLOR][/B]:N,DIM_OUTTOL:N,0.0,0.0) =TOL(NOMINAL:N,DIM_OUTTOL:N,0.0,0.0) =TOL(F_PLUS_TOL:N,DIM_OUTTOL:N,0.0,0.0) =TOL(F_MINUS_TOL:N,DIM_OUTTOL:N,0.0,0.0) =TOL(DIM_MEASURED:N,DIM_OUTTOL:N,0.0,0.0) =TOL([COLOR=#e74c3c][B][MMC/LMC/RFS][/B][/COLOR]:N,DIM_OUTTOL:N,0.0,0.0)
Code:
=TOL(ID,DIM_OUTTOL,0.0,0.0) =TOL(NOMINAL,DIM_OUTTOL,0.0,0.0) =TOL(F_PLUS_TO,DIM_OUTTOL,0.0,0.0) =TOL(F_MINUS_TO,DIM_OUTTOL,0.0,0.0) =TOL(DIM_MEASURED,DIM_OUTTOL,0.0,0.0) =TOL(DIM_DEVIATION,DIM_OUTTOL,0.0,0.0)
- How can I refer to the measured feature? (?? in Line 1, if this is even the correct method)
- How can I refer to the datum number (?? in Line 2 - EDIT: SOLVED)
- How can I display MMC/LMC/RFS?
- What else did I miss?
Edit: forgot the check condition for TOL()
Comment