Hi all, I'm using xpath(xml(json(concat('{"root":{"choices":', item()?['MyValue'] , '}}'))), '/root/choices/Value/text()') to return an array from my Sharepoint list for each Choices column type and adding it to an HTML table.
When the values appear for each of the Choices columns, they appear in the HTML table as ["Value1","Value2"] but I want them to appear as Value1, Value2.
I've been trying to use replace unsuccessfully, so far, to strip out the brackets and quotes around each of the values so only the value itself is returned. ?
Thanks in advance!