Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
Hi,
with api 14 with code below, it is missing LGU+ contents in the folder.
let
Source = SharePoint.Contents("https://nokia.sharepoint.com/sites/korea-pmo-pbi-data-repository", [ApiVersion = 14]),
#"Documents" = Source{[Name="Documents"]}[Content],
#"KR Cell Status" = #"Documents"{[Name="KR Cell Status"]}[Content],
wherease, api 15, it is not missing any.
The reason I tried it with 14 was I heard 14 might not missing all the contents and better, but not sure.
My SP site was created in 2023. Should I keep using api version 15?
let
Source = SharePoint.Contents("https://nokia.sharepoint.com/sites/korea-pmo-pbi-data-repository", [ApiVersion = 15]),
#"Shared Documents" = Source{[Name="Shared Documents"]}[Content],
#"KR Cell Status" = #"Shared Documents"{[Name="KR Cell Status"]}[Content],
Solved! Go to Solution.
Hi @jeongkim ,
Thanks for the detailed explanation and screenshots — they really help clarify the issue.
What you're seeing is actually a known behavior difference between API version 14 and 15 in the SharePoint.Contents function.
Even though some sources suggest API 14 might be more stable, in practice:
Stick with API version 15 — especially since your site is relatively new and you're seeing complete results with it. Unless you have a specific legacy compatibility requirement, API 15 is the safer and more future-proof choice.
Let me know if you want help optimizing your query structure or filtering specific folders dynamically.
If my response resolved your query, kindly mark it as the Accepted Solution to assist others. Additionally, I would be grateful for a 'Kudos' if you found my response helpful.
This response was supported by AI for translation and text editing.
Hi @jeongkim ,
Thanks for the detailed explanation and screenshots — they really help clarify the issue.
What you're seeing is actually a known behavior difference between API version 14 and 15 in the SharePoint.Contents function.
Even though some sources suggest API 14 might be more stable, in practice:
Stick with API version 15 — especially since your site is relatively new and you're seeing complete results with it. Unless you have a specific legacy compatibility requirement, API 15 is the safer and more future-proof choice.
Let me know if you want help optimizing your query structure or filtering specific folders dynamically.
If my response resolved your query, kindly mark it as the Accepted Solution to assist others. Additionally, I would be grateful for a 'Kudos' if you found my response helpful.
This response was supported by AI for translation and text editing.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.