Forum Discussion
Anonymous
6 years agoNot applicable
Backfill Row Values to 0
Hi all, I'm pulling some data out of an API that retrieves data in 100 row pages. Using this technique I've been able to loop through all the pages and retrieve all the data in a single table, wh...
- 6 years ago
If you drill down on your shown step to get the totalpages value, you can just use = {0..totalpages-1} to make that list, convert it to a table, make it a text column and concatenate it into your API call.
If this works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
mahoneypat
6 years agoMicrosoft Employee
If you drill down on your shown step to get the totalpages value, you can just use = {0..totalpages-1} to make that list, convert it to a table, make it a text column and concatenate it into your API call.
If this works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
- Anonymous6 years agoNot applicable
Perfect, exactly what I was after. Many thanks!