Jump to content

Suppressing PiWeb True Position data. Calypso 2019


---
 Share

Recommended Posts

Please sign in to view this quote.

viewtopic.php?p=20198#p20198

For the tolerances:

Go to Resources - Characteristics Settings Editor - Report - Transfer tolerances from the 'additional printout' option to PiWeb - either set the Measurement Plan to Off or the specific Characteristic to Off.
Link to comment
Share on other sites

I use this code to replace the tolerance with a space when reporting additional information.

Upper Tol. text box:

${if Equal(String.Right(Qdb.Characteristic(2002),2), ".X") then " "
else if Equal(String.Right(Qdb.Characteristic(2002),2), ".x") then " "
else if Equal(String.Right(Qdb.Characteristic(2002),2), ".Y") then " "
else if Equal(String.Right(Qdb.Characteristic(2002),2), ".y") then " "
else if Equal(String.Right(Qdb.Characteristic(2002),2), ".Z") then " "
else if Equal(String.Right(Qdb.Characteristic(2002),2), ".z") then " "
else Qdb.Characteristic(2113)}

Lower Tol. text box:

${if Equal(String.Right(Qdb.Characteristic(2002),2), ".X") then " "
else if Equal(String.Right(Qdb.Characteristic(2002),2), ".x") then " "
else if Equal(String.Right(Qdb.Characteristic(2002),2), ".Y") then " "
else if Equal(String.Right(Qdb.Characteristic(2002),2), ".y") then " "
else if Equal(String.Right(Qdb.Characteristic(2002),2), ".Z") then " "
else if Equal(String.Right(Qdb.Characteristic(2002),2), ".z") then " "
else Qdb.Characteristic(2112)}
Link to comment
Share on other sites

 Share

×
×
  • Create New...