You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: powerapps-docs/maker/canvas-apps/functions/function-concatenate.md
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -63,23 +63,23 @@ Select the button (hold down the Alt key while clicking the button).
63
63
64
64
| Formula | Description | Result |
65
65
|---------|-------------|--------|
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**. | "JaneDoe" |
69
-
|**FirstName & " " & LastName**| Same as the previous example, using the **&** operator instead of the function. | "JaneDoe" |
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" |
70
70
71
71
### Concatenate with single column table
72
72
73
73
| Formula | Description | Result |
74
74
|---------|-------------|--------|
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. ||
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. ||
76
76
77
77
### Concat function
78
78
79
79
| Formula | Description | Result |
80
80
|---------|-------------|--------|
81
81
|**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, " |
83
83
84
84
### Trimming the end
85
85
@@ -89,7 +89,7 @@ In some cases these extra characters won't matter, for example if a single space
89
89
90
90
| Formula | Description | Result |
91
91
|---------|-------------|--------|
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" |
93
93
|**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" |
94
94
95
95
### Split and MatchAll
@@ -98,8 +98,8 @@ The **Split** and **MatchAll** functions can be used to reverse **Concat** when
98
98
99
99
| Formula | Description | Result |
100
100
|---------|-------------|--------|
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. ||
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. | 
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. ||
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. | 
Copy file name to clipboardExpand all lines: powerapps-docs/maker/canvas-apps/global-apps.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -68,7 +68,7 @@ The change in the PowerApps list separator is consistent with what happens to th
68
68
69
69
* Arguments in function calls.
70
70
* 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).
72
72
73
73
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:
0 commit comments