Skip to content

Commit

Permalink
Update function-concatenate.md
Browse files Browse the repository at this point in the history
Line 96: Changed the output of Concat( Products, Name, ", " ) from 
"'Violin', 'Cello', 'Trumpet'" to "Vilolin, Cello, Trumpet" by removing single quotes from the output string.
  • Loading branch information
LowCodeCitizen committed Feb 18, 2024
1 parent 2a30797 commit 9774cfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion power-platform/power-fx/reference/function-concatenate.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ For these examples, set the **Text** property of a label to a formula from the f

| Formula | Description | Result |
| --- | --- | --- |
| **Concat( Products, Name, ", " )** | Evaluates the expression **Name** for each record of **Products** and concatenates the results together into a single text string separated by **", "**. | "'Violin', 'Cello', 'Trumpet'" |
| **Concat( Products, Name, ", " )** | Evaluates the expression **Name** for each record of **Products** and concatenates the results together into a single text string separated by **", "**. | "Violin, Cello, Trumpet" |
| **Concat( Products, "'" & Name & "'", ", " )** | Evaluates the expression **"'" & Name & "'"** for each record of **Products** and concatenates the results together into a single text string separated by **", "**. | "'Violin', 'Cello', 'Trumpet'" |
| **Concat( Filter( Products, Type = "String" ), Name, ", " )** | Evaluates the formula **Name** for each record of **Products** that satisfies the filter **Type = "String"**, and concatenates the results into a single text string separated by **", "**. | "Violin, Cello" |

Expand Down

0 comments on commit 9774cfd

Please sign in to comment.