Hi, I'm using Power Apps to paste a column of values from Excel into a text box then I send that text to a variable in Power Automate which returns this to the variable in Power Automate: "ABC\nDEF\nGHI"
I then remove the "\n" and replace with a comma in a compose action which gives me this: "ABC,DEF,GHI"
Formula used: replace(variables('ALPHABET'),decodeUriComponent('%0A'),',')
However I need to have quotes around each value so I add another compose action and use replace and it turns out like this:
"ABC\",\"DEF\",\"GHI" why does it add slashes??
Formula used: replace(outputs('Compose_ALPHABET'),',','","')
I need the values to look like this: "ABC","DEF","GHI"
Anyone have any guidance on how to solve this?