Hello, I have a list of names formatted as Last,First Middle. I want to parse each name into First Last and then store both the original and parsed names into an array with 2 columns. I've already figured out how to parse the names, but I'm having trouble appending items.
This is what my flow looks like:
In the Value field for the Append to variable function, this is what I put:
{
"Name":"outputs('Compose')",
"RawName":"items('Apply_to_each_3')?['Name']"
}
But I'm getting an error saying that my expression is invalid when I try to save it. What's wrong with my expression?