Usage Of Join Function In Power Automate

Introduction

In Power Automate, at times we must join a few items received in the form of strings. As a scenario, a user response was taken to show this function behavior.

Step 1

Login to the required Power Apps environment using URL make.powerapps.com by providing username and password and click on Flows on the left-hand side as shown in the below figure.

Usage of Join Function in Power Automate

Step 2

After Step 1, Click on New Flow and select instant cloud flow and provide the trigger as Manually trigger a flow and click on Create as shown in the below figure.

Usage of Join Function in Power Automate

Step 3

After Step 2, name the flow as Join Function and take initialize variable and name it as Registered Users for an Event and provide values

Name: Registered Users for an Event
Type: Array
Values: [
    "Venkat",
    "Subba Rao",
    "Venkata Subba Rao Polisetty"
]

as shown in the below figure.

Usage of Join Function in Power Automate

Step 4

After Step 3, take compose action and name it as Join Function - Comma Separator and provide the input values with the following syntax of join function which expects a collection and 2nd parameter as delimiter string

join(collection: array, delimiter: string)
as
join(variables('RegisteredUsers'),',')

and click on ok / Update as shown in the below figure.

Usage of Join Function in Power Automate

Step 5

After Step 4, take compose action and name it as Join Function | Pipe Separator and provide the input values as

Inputs : join(variables('RegisteredUsers'),'|')

as shown in the below figure.

Usage of Join Function in Power Automate

Step 6

After Step 5, save and test the flow and observe the results that the given output has set of values separated by delimiters comma, pipe as shown in the below figure.

Usage of Join Function in Power Automate

Note

  1. Make sure to save and run the flow whenever you try expressions.
  2. Make sure to provide input array in proper acceptable format of string array.

Conclusion

In this way, we can join received values with join function in power automate.


Similar Articles