Use the Operator buttons.
You can use the following types of operators:
For example, this expression could be used to determine the total amount spent on parts and labor for a pipe repair project:
PIPE_PARTS_COST + PIPE_LABOR_COST
For example, to find buildings whose assessed value is $100,000 or more, use this expression:
VALUE >= 100000
For example, to find only buildings that have a value for the TERMINATION_DATE property, use this expression:
NOT TERMINATION_DATE NULL
Precede every operator with a property. For example, to find buildings whose creation date is after 1990 and before 2005, the expression must look like this one:
CREATION_DATE > 1990 AND CREATION_DATE < 2005
You can use the following types of functions:
Math operators perform arithmetic functions. For example, to round the bank width value for water features up to the next whole number and then find water features whose rounded bank width is more than 4 feet, use this expression:
Ceil(BANK_WIDTH) > 4
Numeric functions operate on properties whose values are numbers. For example, to round the height of buildings down to the nearest lower whole number and then find buildings whose rounded height is less than 8 feet, use this expression:
Floor(ROOF_HEIGHT) < 8
Text functions operate on textual values. For example, to convert pipe names to all uppercase letters, use this expression:
Upper(NAME)
Date functions operate on date values. For example, to add one month to the start date for a project, use this expression:
AddMonths(START_DATE, 1)
You can use the following types of options:
Geometric options may include Area, Length2D, M, X, Y, and Z (depending on the data source). For example, to find buildings whose area is greater than 10,000 square feet, select the Buildings feature class and use this expression:
Area2D(GEOMETRY) > 10000
Conversion options change values. For example, to display “None” if the property USE_TYPE is null, use this expression:
NullValue(USE_TYPE, 'None')