Forum Discussion
Combining files in a SharePoint Folder - Not working
Hi mikemagill,
Based on my test, this feature can work on my side like the picture below:
Would you please share some screenshots to clarify “I get stuck at the first step of filtering down to the specific folder the files are in - no file names show up”?
When you select the SharePoint Folder connector and enter the SharePoint site URL, are there records retrieved for this specific folder you mentioned?
Does the credential you used to retrieved data has permission to access the specific folder?
Regards,
Daniel He
The first part of the query is as follows:
let
Source = SharePoint.Files("https://#######.sharepoint.com/sites/man1", [ApiVersion = 15]),
#"Filtered Rows - DB Folders" = Table.SelectRows(Source, each Text.Contains([Folder Path], "Shared Documents/J. ##### DATABASE/Live & Archive Databases/")),
#"Filtered Rows - DB files" = Table.SelectRows(#"Filtered Rows - DB Folders", each Text.EndsWith([Name], " Live DB.xlsm") or Text.EndsWith([Name], " Archive DB.xlsm"))
in
#"Filtered Rows - DB files"
This query is fine on my SharePoint site and results in two files correctly being listed. On the charity SharePoint site, no files are listed.
I can view the files directly on the team site so I presume the credentials I entered also would permit the same.