A eq B
- 1 Minute to read
- Print
- DarkLight
- PDF
A eq B
- 1 Minute to read
- Print
- DarkLight
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
FLogic: A=B
Returns 1 if [A=B], 0 if [A<>B] and Null for all excluded records
Purpose
Use this function to:
- Identify matching records
- Flag records which meet specified criteria
- Flag records where the statement A=B is true
Return Value
Property | Value |
---|---|
FieldType | Integer |
FieldSize | Low |
DataType | Discrete |
DataSize | Byte |
Example Return Value: 0, 1, null
Parameters
Parameter | JSON | Description |
---|---|---|
Table | “targetTable”: “MyTableName” | The target table on which the new field will be created |
Filter | “dataset”: {DataSet_JSON} | Optional. If a filter is applied, records not in the filter recordset will be returned as null. |
Function | “function”: “flogic” | FLogic |
Logic Function | "p1":"A=B" | A=B |
A | “p2”: “FieldName” “p2”: “#N*.N*” “p2”: “#N*” “p2”: “#MyString” “p2”: “#YYYY-MM-DD” | Required. Field or value to compare with value B Supports:
|
B | “p2”: “FieldName” “p2”: “#N*.N*” “p2”: “#N*” “p2”: “#MyString” “p2”: “#YYYY-MM-DD” | Required. Field or value to compare with value A Supports:
|
Special test cases
- To test for null, use #null
- To test for an empty string, use #
JSON Sample
Usage Notes
See Also:
- Engineering | Expression Field
- Hotbar >> Right-click | Save | Save As Field
- A!=B, A>B... (FLogic Functions)
Example
Example | Details |
---|---|
Description | Flag customers who work freelance |
Input |
|
Sample |
Was this article helpful?