You are here: All Help Topics > Accounting and Assurance > Calculations, Functions and Linkages > | Operator
-- Reference --

Or Operator

Used to combine two filter commands. Either condition must be true in order for the expression to be true.

condition1|condition2

DATABASE -> FIELD OPERATOR VALUE | DATABASE -> FIELD OPERATOR VALUE

GL->JE_DESC="VISA"|GL->JE_DESC="AMERICAN EXPRESS"

Filters all Journal entries with a journal description that is either "AMERICAN EXPRESS" or "VISA".

Tip: The journal description must match these descriptions in the filter exactly or the filter will not select them. In order to Find journal entries where "VISA" or "AMERICAN EXPRESS" was only part of the journal description, use other functions such as IN or SCANSTR to filter instead. To deal with issues of case difference, the description in the journal might be in lower case or a mix of upper and lower case, use the function UPPER ,or LOWER . More than one function can be used in a filter at a time. Functions can be nested in the filter to define the criteria. For using dates in a filter, see Date Fields for more information.

Related Topics