Skip to content

Commit 96c0159

Browse files
committed
more tweaks
1 parent 75f10ae commit 96c0159

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

powerapps-docs/maker/canvas-apps/functions/function-concatenate.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -63,23 +63,23 @@ Select the button (hold down the Alt key while clicking the button).
6363

6464
| Formula | Description | Result |
6565
|---------|-------------|--------|
66-
| **Concatenate( LastName, ", ", FirstName )** | Concatenates the value in **LastName**, the string **", "** (a comma followed by a space), and the value in **FirstName**. | "Doe, Jane" |
67-
| **LastName & ", " & FirstName** | Same as the previous example, using the **&** operator instead of the function. | "Doe, Jane" |
68-
| **Concatenate( FirstName, " ", LastName )** | Concatenates the value in **FirstName**, the string **" "** (a single space), and the value in **LastName**. | "Jane Doe" |
69-
| **FirstName & " " & LastName** | Same as the previous example, using the **&** operator instead of the function. | "Jane Doe" |
66+
| **Concatenate( LastName, ", ", FirstName )** | Concatenates the value in **LastName**, the string **", "** (a comma followed by a space), and the value in **FirstName**. | "Doe, Jane" |
67+
| **LastName & ", " & FirstName** | Same as the previous example, using the **&** operator instead of the function. | "Doe, Jane" |
68+
| **Concatenate( FirstName, " ", LastName )** | Concatenates the value in **FirstName**, the string **" "** (a single space), and the value in **LastName**. | "Jane Doe" |
69+
| **FirstName & " " & LastName** | Same as the previous example, using the **&** operator instead of the function. | "Jane Doe" |
7070

7171
### Concatenate with single column table
7272

7373
| Formula | Description | Result |
7474
|---------|-------------|--------|
75-
| **Concatenate( "Name: ", Products.Name, ", Type: ", Products.Type )** | For each record in the **Products** table, concatenates the string **"Name: "**, the name of the product, the string **", Type: "** and the type of the product. | ![](media/function-concatenate/single-column.png) |
75+
| **Concatenate( "Name: ", Products.Name, ", Type: ", Products.Type )** | For each record in the **Products** table, concatenates the string **"Name: "**, the name of the product, the string **", Type: "** and the type of the product. | ![](media/function-concatenate/single-column.png) |
7676

7777
### Concat function
7878

7979
| Formula | Description | Result |
8080
|---------|-------------|--------|
8181
| **Concat( Products, Name & ", " )** | Evaluates the formula **Name & ", "** for each record of **Products** and concatenates the results together into a single text string. | "Violin, Cello, Trumpet, " |
82-
| **Concat( Filter( Products, Type = "String" ), Name & ", " )** | Evaluates the formula **Name & ", "** for each record of **Products** that satifies the filter **Type = "String"** and concatenates the results together into a single text string. | "Violin, Cello, " |
82+
| **Concat( Filter( Products, Type = "String" ), Name & ", " )** | Evaluates the formula **Name & ", "** for each record of **Products** that satifies the filter **Type = "String"** and concatenates the results together into a single text string. | "Violin, Cello, " |
8383

8484
### Trimming the end
8585

@@ -89,7 +89,7 @@ In some cases these extra characters won't matter, for example if a single space
8989

9090
| Formula | Description | Result |
9191
|---------|-------------|--------|
92-
| **Left( Concat( Products, Name & ", " ), Len( Concat( Products, Name & ", " ) ) - 2 )** | Returns the result of **Concat** but removes the last two characters, the extra separator that is not desired. | "Violin, Cello, Trumpet" |
92+
| **Left( Concat( Products, Name & ", " ), Len( Concat( Products, Name & ", " ) ) - 2 )** | Returns the result of **Concat** but removes the last two characters, the extra separator that is not desired. | "Violin, Cello, Trumpet" |
9393
| **Match( Concat( Products, Name & ", " ), "^(?<trim>.*), $" ).trim** | Returns the characters of **Concat** from the beginning of the text string (^) to the end ($) but does not include the unwanted comma and space at the end. | "Violin, Cello, Trumpet" |
9494

9595
### Split and MatchAll
@@ -98,8 +98,8 @@ The **Split** and **MatchAll** functions can be used to reverse **Concat** when
9898

9999
| Formula | Description | Result |
100100
|---------|-------------|--------|
101-
| **Split( Concat( Products, Name & ", " ), ", " )** | Splits the text string with the separator **", "**. Since there is a comma and space at the end of the string, this becomes an extra row in the result with an empty string. | ![](media/function-concatenate/split.png) |
102-
| **MatchAll( Concat( Products, Name & ", " ), "[^\s,]+" ).FullMatch** | Splits the text string based on characters that are not a space or a comma. In this case, the extra comma and space at the end of the string is automatically removed. | ![](media/function-concatenate/matchall.png)
101+
| **Split( Concat( Products, Name & ", " ), ", " )** | Splits the text string with the separator **", "**. Since there is a comma and space at the end of the string, this becomes an extra row in the result with an empty string. | ![](media/function-concatenate/split.png) |
102+
| **MatchAll( Concat( Products, Name & ", " ), "[^\s,]+" ).FullMatch** | Splits the text string based on characters that are not a space or a comma. In this case, the extra comma and space at the end of the string is automatically removed. | ![](media/function-concatenate/matchall.png)
103103

104104

105105

powerapps-docs/maker/canvas-apps/global-apps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ The change in the PowerApps list separator is consistent with what happens to th
6868

6969
* Arguments in function calls.
7070
* Fields in a [record](working-with-tables.md#elements-of-a-table).
71-
* Records in a [table](working-with-tables.md#inline-value-table).
71+
* Records in a [table](working-with-tables.md#inline-value-tables).
7272

7373
For example, consider the following formula expressed in a language and region that uses dot or period as the decimal separator, such as Japan or the United Kingdom:
7474

0 commit comments

Comments
 (0)