Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hey everyone,
I’m facing a strange issue while connecting a SharePoint Online List to Power BI:
Has anyone encountered something similar? Any tips on fixing this?
Thanks in advance!
Solved! Go to Solution.
Iirc when this has happened in the past, you can scroll to the bottom of your query and see if there is an error complaining about something. I've sometimes run across lists where even just one item is missing a field (as in the whole field somehow did not get associated to the item, not just that it is blank) and it causes the whole query to error.
Alternatively, you can try a simple api call on just IDs to see if you can get more than 276 items.
= Web.Contents(
"https://{site_url}/_api",
[
RelativePath = "/web/lists/GetByTitle('List Title')/items",
Headers = [accept="application/json;odata=nometadata"],
Query = [ #"$select" = "ID", #"$top" = "5000" ]
]
)
Hi @ryr96 ,
Thank you @MarkLaf for providing possible solution,I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions. If my response has addressed your query, please accept it as a solution and give a 'Kudos' so other members can easily find it.
Thank you.
Hi @ryr96 ,
I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions. If my response has addressed your query, please accept it as a solution and give a 'Kudos' so other members can easily find it.
Thank you.
Hi @ryr96 ,
I hope this information is helpful. Please let me know if you have any further questions or if you'd like to discuss this further. If this answers your question, please Accept it as a solution and give it a 'Kudos' so others can find it easily.
Thank you.
Iirc when this has happened in the past, you can scroll to the bottom of your query and see if there is an error complaining about something. I've sometimes run across lists where even just one item is missing a field (as in the whole field somehow did not get associated to the item, not just that it is blank) and it causes the whole query to error.
Alternatively, you can try a simple api call on just IDs to see if you can get more than 276 items.
= Web.Contents(
"https://{site_url}/_api",
[
RelativePath = "/web/lists/GetByTitle('List Title')/items",
Headers = [accept="application/json;odata=nometadata"],
Query = [ #"$select" = "ID", #"$top" = "5000" ]
]
)
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.