Forum Discussion
ramviv
2 years agoNew Member
Extract multiple files from sub folders in sharepoint
Hi I am new to power bi. I need help extracting multiple files from sharepoint folder. Here is my folder structure in sharepoint I want to extract all the xlsx files then do the t...
- 2 years ago
Hi ramviv,
You could change the code to the below to ensure files in sub-folders are included.
Depending on the site size, performance may not be great.
#'Filtered Rows" = Table.SelectRows(Source, each Text.StartsWith([Folder Path], "https://mywebsite-my.sharepoint.com/mycompany.com/Documents/Yearly-Dataset/")),
KNP
2 years agoSuper User
Hi ramviv,
You could change the code to the below to ensure files in sub-folders are included.
Depending on the site size, performance may not be great.
#'Filtered Rows" = Table.SelectRows(Source, each Text.StartsWith([Folder Path], "https://mywebsite-my.sharepoint.com/mycompany.com/Documents/Yearly-Dataset/")),