
Announcements
Dear experts
I build a flow that reads CSV files from OneDrive and now I would like to do exactly the same but reading the file from SharePoint but I got stuck.
This the flow that works from onedrive.
I tried to replace
the split split(decodeUriComponent(replace(replace(uriComponent(trim(body('Get_file_content'))),'%0D',''),'%0A','#NEWLINE#')),'#NEWLINE#') builds an array and then I am able to select that array
when doing the exact same thing using the SharePoint actions I get stuck
Can you steer me in the right direction?
Or is there any other clean way to read the content of CSV file ?
I just needed to add a compose action with the file content and then I can fill an array.