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

& Operator

Used to combine two filter commands. Both conditions must be found true in order for the expression to be true.

condition1&condition2

DATABASE -> FIELD OPERATOR VALUE&DATABASE -> FIELD OPERATOR VALUE

GL->JOURSOURCE="AJ"&GL->JE_DESC="AMERICAN EXPRESS"

Filters for adjusting journal entries that have the description of "AMERICAN EXPRESS".

Both conditions are true and therefore the expression is true.

Tip: The journal description must match the description in the filter exactly or the filter will not select them. In order to find journal entries where "AMERICAN EXPRESS" is 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