Easiest option would be to automate the steps via Front End. Once the zipped folder is downloaded - unzip and utilize the excel file which will give complete details in few clicks. During export - there is no 100 records limits. You can get all the transactions
If it is specific to New Items - Ideally duplicate rows shouldn’t be there unless you are writing in the same excel while running the process multiple times
100 is the cap set by UiPath to avoid memory exception as a Queue could contain huge number of records
You could build a logic using SKIP and TOP properties of get queue items activity to fetch all the new items. Skip 100 will skip the first 100 items and start from 101 item. Based on the loop count - you could build a logic to extract all the records
the limit is for 1 get of queue items…in one get you would get max 100…so the loop of while which is having condition of 100 will run 10 times to get all 1000 items…and will end loop after that…
if you see the screenshots there are two loops one while which runs till get queue items does not retrieve all items