Skip to content

Commit 265d8bc

Browse files
authored
Merge pull request MicrosoftDocs#1849 from Ram4GB/patch-1
Update function-filter-lookup.md
2 parents 93cfdde + e35fada commit 265d8bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

powerapps-docs/maker/canvas-apps/functions/function-filter-lookup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ The following examples use the **IceCream** [data source](../working-with-data-s
7070
| **Search( IceCream, "choc", "Flavor" )** |Returns records where the string "choc" appears in the **Flavor** name, independent of uppercase or lowercase letters. |![](media/function-filter-lookup/icecream-chocolate.png) |
7171
| **Search( IceCream, "", "Flavor" )** |Because the search term is empty, all records are returned. |![](media/function-filter-lookup/icecream.png) |
7272
| **LookUp( IceCream, Flavor = "Chocolate", Quantity )** |Searches for a record with **Flavor** equal to "Chocolate", of which there is one. For the first record that's found, returns the **Quantity** of that record. |100 |
73-
| **LookUp( IceCream, Quantity > 150, Quantity + OnOrder )** |Searches for a record with **Quantity** greater than 100, of which there are multiple. For the first record that's found, which is "Vanilla" **Flavor**, returns the sum of **Quantity** and **OnOrder** columns. |250 |
73+
| **LookUp( IceCream, Quantity > 150, Quantity + OnOrder )** |Searches for a record with **Quantity** greater than 150, of which there are multiple. For the first record that's found, which is "Vanilla" **Flavor**, returns the sum of **Quantity** and **OnOrder** columns. |250 |
7474
| **LookUp( IceCream, Flavor = "Pistachio", OnOrder )** |Searches for a record with **Flavor** equal to "Pistachio", of which there are none. Because none were found, **Lookup** returns *blank*. |*blank* |
7575
| **LookUp( IceCream, Flavor = "Vanilla" )** |Searches for a record with **Flavor** equal to "Vanilla", of which there is one. Since no reduction formula was supplied, the entire record is returned. |{ Flavor: "Vanilla", Quantity: 200, OnOrder: 75 } |
7676

0 commit comments

Comments
 (0)