Skip to content

Commit 2bc22a4

Browse files
warning on In operator
1 parent c51c084 commit 2bc22a4

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

powerapps-docs/maker/canvas-apps/functions/operators.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,9 @@ Use the **[in](operators.md#in-and-exactin-operators)** and **[exactin](operator
7575

7676
The gallery shows only Europa because only its name contains the letter that you specified in the case that you specified.
7777

78+
> [!Note]
79+
> The **in** operator is only delegated for columns on the base data source. For instance, if the datasource is *Accounts* then `Filter(Accounts, Name in ["name1", "name2"])` delegates to the data source for evaluation. However, `Filter(Accounts, PrimaryContact.Fullname in ["name1", "name2"])` does not delegate. Fullname is on a different table. The expression is evaluated locally.
80+
7881
## ThisItem, ThisRecord, and As operators
7982
A few controls and functions apply formulas to individual records of a table. To refer to the individual record in a formula, use one of the following:
8083

0 commit comments

Comments
 (0)