
Announcements
I am using the Populate Text field on the web page, I have my UI element setup, and text and everything is working fine except for one problem.
It shows for example under the name its JohnDoe instead it should be John Doe. I can't seem to get the space in between? Below is what I have but don't know how to format it correctly. My text & variable info is below.
It is pulling it from an Excel spreadsheet with 2 columns one named FirstName & the Other LastName.
%CurrentItem['FirstName']%
%CurrentItem['LastName']%
Thanks
Hi,
To separate variables by a space in the Populate Text field on a web page, you can use the concat() function in Power Automate. The concat() function concatenates two or more strings into a single string 1.
Here’s an example of how to use the concat() function to separate variables by a space:
concat(%CurrentItem['FirstName']%, ' ', %CurrentItem['LastName']%)
This expression concatenates the FirstName and LastName variables with a space between them. You can use this expression in the Populate Text field action to populate the text field on the web page.
Gill