Hello All,
I created a flow that sends me an email whenever an item is update in my sharepoint list. The email consists of 5 columns (technology, name of the field that change, previous field value, current field value and updated by).
I created a second flow that is supposed to extract the value of the HTML table I get via email (see picture of the table I get) and add those values to a second sharepoint list. However when I run the flow on the “select “ “from” step (highlighted in picture) I can see the changes I made which is good but in the “output “ of the select the fields I need show as “null”
this is the function I have for each of the field in the “select “ step
technology : split(item(),’^’)[0]. This one works fine
Name of the field that change: split(item(),’^’)?[1]
previous field value: split(item(),’^’)?[2]
the last two shows as NULL
what I need:
A function that allows me to get the value shown in select“inputs “ (highlighted in picture) so I can add those values to a second sharepoint list.



