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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I'm trying to get a specific value from a json return, to use as a variable in the pagination script.
Postman returns this on the query:
Solved! Go to Solution.
Hi @Anonymous
Based on the JSON above you should see this when you click on the Json step
So you can use this to get the value in resultsWithoutFilter
Count = Json[pagination][resultsWithoutFilter]
Regards
Phil
If I answered your question please mark my post as the solution.
If my answer helped solve your problem, give it a kudos by clicking on the Thumbs Up.
Proud to be a Super User!
Hi @Anonymous
Based on the JSON above you should see this when you click on the Json step
So you can use this to get the value in resultsWithoutFilter
Count = Json[pagination][resultsWithoutFilter]
Regards
Phil
If I answered your question please mark my post as the solution.
If my answer helped solve your problem, give it a kudos by clicking on the Thumbs Up.
Proud to be a Super User!
@Anonymous , refer if this blog can help
https://medium.com/@marktiedemann/how-to-do-pagination-in-power-query-430460c17c78
Hi @amitchandak , thanks. I'm using that code as basis, but it's not an odata streamt. I'm having trouble extracting (addressing) the "resultsWithoutPages" attribute from the json response. If a just put a constant the code works just fine. It's me just not getting/ finding information on how to address the attributes in the json response, I guess.