Is there a way to limit number of rows to be executed per day?

Hi,
I have done email automation,
I have an input file, where i have provided all the information need to be sent.
So if i provide 1000 rows, the bot should execute only 50-100 rows per day, is it possible?

@geetanjali.nerlekar

You can add condition to check transaction number and stop the bot

Cheers

but the bot should not move to the next transaction if it has reached its limit per day

Check the transaction no before the bot process each rows. The transaction no will be reset on a daily basis (on each run). So bot will run only if transaction no is lesser than the limit. Also, once the transaction is processed, bot can set a flag as completed (may be a new column as flag and set value to completed). So bot will basically check 2 conditions before processing each transaction, the transaction limit and completion status. This way if bot stops on day 1 at 100th transaction, all those 100 will be marked as completed, so next day bot will skip all those and start only from 101th transaction.

@geetanjali.nerlekar

The condition would be check mostly in get transaction data if using reframework or basically before getting transaction

Cheers

how do I do this in StudioX? I’m not a coder. Is there a video or a certain chapter in the tutorial? Thank you!