Hello,
I have a apply to each on a sharepoint list, and for each result I get I want to define a variable where I concatenate 2 columns from the list.
Ex: I have a colums "father: jon" and other "child: jack" and I want to have "jon-jack"
I tried this:
concat(triggerBody()?['father'],'-', triggerBody()?['child'])
But it didn't work...
Someone can help?