Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hi Experts
How would i change the following sharepoint file path to pick up different client data in different sharepoint folder...
= Source{[Name="apples.csv",#"Folder Path"="https://change.sharepoint.com/sites/M365Healthcheck-ClientData/Shared Documents/Client Data/CIFF/apples/"]}[Content]
where CIFF is the client folder and we are looking at apples CSV.
Solved! Go to Solution.
Worked it out chaneg
https://change.sharepoint.com/sites/M365Healthcheck-ClientData/Shared Documents/Client Data/CIFF/apples/"]}[Content]
to
Filepath &"/apples/"]}[Content]
Worked it out chaneg
https://change.sharepoint.com/sites/M365Healthcheck-ClientData/Shared Documents/Client Data/CIFF/apples/"]}[Content]
to
Filepath &"/apples/"]}[Content]
let Source = SharePoint.Files("https://change.sharepoint.com/sites/M365Healthcheck-ClientData/", [ApiVersion = 15]), #"apples csv_https://change sharepoint com/sites/M365Healthcheck-ClientData/Shared Documents/Client Data/CIFF/apples/" = Source{[Name="apples.csv",#"Folder Path"="https://change.sharepoint.com/sites/M365Healthcheck-ClientData/Shared Documents/Client Data/CIFF/apples/"]}[Content],