Hello,
I am using GetItems to get from a SharePoint list, I have multiple people chosen in the 'Owner' field and would like to concatenate them into a single item.
I was able to build the flow with 2 Apply to Each loops one embedded in the other, the output shows each loop generating the desired value and I'm appending this to an array variable, however when calling the variable from a HTML table, it seems to combine all of them under the header, is there a workaround for this ?
Here's my flow:
Variable 2 is a String
Variable 1 is an Array
Compose has this:
concat(items('Apply_to_each_2')?['DisplayName'],';',variables('OwnerList'))Thanks !