I have an app for ordering supplies. When a user clicks add on an item it sends that items info to a collection. Each item in the collection has columns for;
NSN
NOMEN
QTY
PRICE
When someone places an order, that collection is exported to a CSV through PowerAutomate. It also records the order in a sharepoint list. I would like to patch all items selected to one multi-line text column, called c_ITEMS, for that particular SP list item, so that it looks like;
NSN, NOMEN, QTY, PRICE
NSN, NOMEN, QTY, PRICE
etc.
etc.
I tried to use Concat, but I was only able to select one column from the collection. I'm unsure how to display all columns for each item.