I have a table of four folder IDs that are constructed into a url.
The URL also takes an offset parameter and maximum of 100 records are returned each call.
example:
"https://genericurl.com/folders/"+[folderId]+"/assets?sortby=datemodified&sortdir=desc&limit=100&offset="+[offset]
I have the 4 folder iDs and I put them in as text input. Then the offset will need to iterate by 100 until say 19000 records are put in a spreadsheet.
Then move to the next folderid which will have its own total number of assets to offset by 100 until reached.
I also need the spreadsheet to append.
This is a sort of nested loop. I need macro help to accomplish this.
Thanks in advance!