Concat Function in Power Automate
In this exercise, we will learn how to use the Concat Function in Power Automate. The Concat function helps us build a string of data from different pieces of data.
Syntax concat(value1, value2, …)
Example: Here we are concatenating the three values.
concat('I', ' Love ', 'You!') will return I Love You!
The values can come from variables also, like concat(‘Marks: ’, variables(‘Score’)). Here, Score is the name of the variable.
Note: • To use a variable value, use the variables function, like variables(‘variable_name’).
• The concat function is used to combine mostly strings, but we can use other datatypes freely without the need to convert the value to string datatype.