IF Expression for Setting Fields as Visible - Intergraph Smart Instrumentation - Help

Intergraph Smart Instrumentation Help

Language
English
Product
Intergraph Smart Instrumentation
Search by Category
Help
Smart Instrumentation Version
13.1

Syntax

if( b, t, f )

in which b stands for a Boolean expression, t for true and f for false. You substitute the t and f arguments with 1 and 0. When true, the value of 1 indicates that the field is visible and 0 that the field is invisible.

Example

In this example, the expression sets the expected output field in the Calibration Data Entry and Calibration History windows as visible if the As Found result point value is equal to or greater than 1; otherwise, the field is invisible.

if(calib_no_pnt >= 1,1,0)