Hi @v-xida-msft
I got a similar issue here, do you have any idea to solve it?
My flow scheme share as follows the link:
https://drive.google.com/file/d/1m_zFgFYUxs2JZFoQc27ENnzVZTW0ZZlm/view
The scheme explains:
Send an HTTP request to take the excel file form SharePoint and invoke the excel's data from HTTP, finally retrieve the pure data form "value", this way is good for avoiding the SharePoint's versioning setting of "Require Check out" and don't need to format the excel file to be the table type, also quick and efficiently, but I stuck with the data after invoking from HTTP, please see below photo for the data get from "Value" and names it rows:
https://drive.google.com/file/d/1t32RDFPeorDH5aChbsMxV0ryGUwnUMts/view
[
[
"No",
"CD",
"CAT",
"Sub CAT",
],
[
2,
"Add1",
"Test1",
"format3",
"Yes",
"No",
]
[
3,
"Add2",
"Test2",
"format3",
"No",
"No",
The data has no title, I would like to make the rows has a title, just like below content, because I need the title for each of the rows to define each row to apply to the SharePoint list:
[
"No": "2",
"CD": "Add1",
"CAT": "Test1",
"Sub CAT": "format3",
],
[
"No": "3",
"CD": "Add2",
"CAT": "Test3",
"Sub CAT": "format4",
]
I try to use the Select to convert it, but no idea how to get it, cause the "value" content no title for formula to quote.
Refer to some article(below link) but their issue has a title and no need to overcome this situation, if you have some idea, please advice, thank you.
https://powerusers.microsoft.com/t5/Building-Flows/How-to-retreive-or-calculate-minimum-and-maximum-...
Regards,
ilu989