Learn how to use the Concatenate function in Power Fx, the low-code programming language created by Microsoft. The Concatenate function allows you to join together multiple strings of text and strings in tables, but only in certain scenarios! You will see some examples of how to use the Concatenate function with individual strings, single-column tables, and mixed arguments.
You will also learn how Concatenate differs from the Concat function too, which is similar to the Concatenate function but operates on a table expression.
All demo code is below:
Strings: Concatenate("Flow", "Joe")
Table: Concatenate(NameDataTable.Selected.Name, " ", "Selected")