Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
RobbeVL
Impactful Individual
Impactful Individual

SharepointAPI error

HI All,

Recently, I've been encoutnering some problems connecting to the Sharepoint API.
The search API limits to pull 500 records at a time, so I'm working with an offset of 500. 

Whenever the amount of records is exacly 500 or a multiply of that, I seem to get an error. If I then manually change this offset , it can continue. 

 
 
 

Untitled.png

How do I work around this issue? 


1 ACCEPTED SOLUTION
Stachu
Community Champion
Community Champion

What error do you get? What changes to offset do you make to make it work?

EDIT it seems to be related to the index starting at 0 and not 1. if you have 1500 records starting with 0 the last index should be 1499, and your List.Generate in Offset will also generate 1500

Adjust 

Offset = List.Generate(()=>0, each _ <= Number.RoundTowardZero

to

Offset = List.Generate(()=>0, each _ < Number.RoundTowardZero

 and it should work



Did I answer your question? Mark my post as a solution!
Thank you for the kudos 🙂

View solution in original post

3 REPLIES 3
Stachu
Community Champion
Community Champion

What error do you get? What changes to offset do you make to make it work?

EDIT it seems to be related to the index starting at 0 and not 1. if you have 1500 records starting with 0 the last index should be 1499, and your List.Generate in Offset will also generate 1500

Adjust 

Offset = List.Generate(()=>0, each _ <= Number.RoundTowardZero

to

Offset = List.Generate(()=>0, each _ < Number.RoundTowardZero

 and it should work



Did I answer your question? Mark my post as a solution!
Thank you for the kudos 🙂

RobbeVL
Impactful Individual
Impactful Individual

Hi Stachu ,

Thank you for your reply!
It is how I fixed the issue before, thank you for pointing out "the why".

Regards,

 

RObbe

Stachu
Community Champion
Community Champion

glad to help, have a good day 🙂



Did I answer your question? Mark my post as a solution!
Thank you for the kudos 🙂

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.

Top Solution Authors