Hi all,
I think I'm missing something simple, but I was wondering what the best way to concatenate two strings in to single line string is in Power Automate Desktop? I see that there's a step to append two strings together, but that adds the second string in to a new line instead of a single one. So as an example, if I wanted to concat "dollar" and "bill" to "dollar bill", using the append function I get
"dollar
bill"
The way I found around this is to split the new variable in to a list delimited by new line and then join the list delimited by a space, but that seems like a roundabout way to what I would think is a simple concat.
Thanks!