Hi all, first ever post so please be gentle.
I am looking to use Power Automate to get some data that is in SharePoint to populate a word document.
Basic mapping of SP single column values to document placeholders is fairly easy, however my challenge is that the data I have is a multi delimited string.
In this format.
1;2;3;|4;5;6;|7;8;9;
This is data that originates from a repeating section in a canvas app.
I need to get it into a 2D Array in order to populate a repeating table using the populate Word template connector in Power Automate.
Something like this:-
[
{
"Value1": "1",
"Value2": "2",
"Value3": "3",
},
{ "Value1": "4",
"Value2": "5",
"Value3": "6",
},
{ "Value1": "7",
"Value2": "8",
"Value3": "9",
}
]
Currently struggling with it and under pressure to get a solution.
I'm not a seasoned developer so any help would be greatfully appreciated.
Kind Regards
Neil