Skip to content

Commit be3755f

Browse files
authored
Merge pull request #5901 from MicrosoftDocs/2202-02-22-in-operator-changes
2202 02 22 in operator changes 2619054
2 parents 2742304 + d788c42 commit be3755f

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

powerapps-docs/maker/canvas-apps/delegation-overview.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: lancedMicrosoft
66
ms.topic: overview
77
ms.custom: canvas
88
ms.reviewer: tapanm
9-
ms.date: 08/25/2021
9+
ms.date: 02/23/2022
1010
ms.subservice: canvas-maker
1111
ms.author: lanced
1212
search.audienceType:
@@ -54,7 +54,9 @@ These lists will change over time. We're working to support more functions and o
5454
Within the **Filter** and **LookUp** functions, you can use these with columns of the table to select the appropriate records:
5555

5656
* **[And](functions/function-logicals.md)** (including **[&&](functions/operators.md)**), **[Or](functions/function-logicals.md)** (including **[||](functions/operators.md)**), **[Not](functions/function-logicals.md)** (including **[!](functions/operators.md)**)
57-
* **[In](functions/operators.md)**
57+
* **[In](functions/operators.md)**
58+
> [!NOTE]
59+
> [In](functions/operators.md) is only delegated for columns on the base data source. For instance, if the data source is **Accounts** table 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 since **Fullname** column is on a different table (**PrimaryContact**) than **Accounts**. The expression is evaluated locally.
5860
* **[=](functions/operators.md)**, **[<>](functions/operators.md)**, **[>=](functions/operators.md)**, **[<=](functions/operators.md)**, **[>](functions/operators.md)**, **[<](functions/operators.md)**
5961
* **[+](functions/operators.md)**, **[-](functions/operators.md)**
6062
* **[TrimEnds](functions/function-trim.md)**

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Some of these operators are dependent on the language of the author. See [Globa
6161
> The **@** operator can also be used to validate the type of the record object against a data source. For example, `Collect(coll,Account@{'Account Number: 1111')`
6262
6363
## in and exactin operators
64-
64+
6565
Use the **[in](operators.md#in-and-exactin-operators)** and **[exactin](operators.md#in-and-exactin-operators)** operators to find a string in a [data source](../working-with-data-sources.md), such as a collection or an imported table. The **[in](operators.md#in-and-exactin-operators)** operator identifies matches regardless of case, and the **[exactin](operators.md#in-and-exactin-operators)** operator identifies matches only if they're capitalized the same way. Here's an example:
6666

6767
1. Create or import a collection named **Inventory**, and show it in a gallery, as the first procedure in [Show images and text in a gallery](../show-images-text-gallery-sort-filter.md) describes.

0 commit comments

Comments
 (0)