Summary
Evaluates if the values in an attribute field match a specified value, expression, or second field.
Usage
This tool is intended for use in ModelBuilder, not in Python scripting.
The tool has two Boolean outputs, True and False. Based on the condition being evaluated, one of the two Boolean outputs is true and the other is false after the tool runs. These Boolean outputs must be set as a precondition to the downstream tools for those to execute if either of the preconditions is true.
Syntax
arcpy.mb.FieldValueIsIfThenElse(in_data, where_clause, {invert_where_clause}, selection_condition, {count}, {count_min}, {count_max})
Parameter | Explanation | Data Type |
in_data | Input element to be evaluated. | Data Element; Layer; Table View; Raster Layer; Mosaic Layer; Graph; Utility Network |
where_clause | An SQL expression used to select a subset of records. For more information on SQL syntax see SQL reference for query expressions used in ArcGIS. | SQL Expression |
invert_where_clause (Optional) | Specifies whether the expression will be used as is, or the opposite of the expression will be used.
| Boolean |
selection_condition | The selection condition to use for the field values of the records matching the SQL expression.
| String |
count (Optional) | The integer count value. | Long |
count_min (Optional) | The minimum integer count value. | Long |
count_max (Optional) | The maximum integer count value. | Long |
Derived Output
Name | Explanation | Data Type |
true | If the specified criteria evaluates to True, this parameter will be set to True. | Boolean |
false | If the specified criteria evaluates to False, this parameter will be set to True. | Boolean |
Environments
Licensing information
- Basic: Yes
- Standard: Yes
- Advanced: Yes