I was making a project where we use a google sheet within that write one column value to another value.
There were more than 5k+ rows in it and after some 70+value getting copied RPA threw an error, which stated that
“Write Cell: Quota exceeded for quota metric ‘Write requests’ and limit ‘Write requests per minute per user’ of service ‘sheets.googleapis.com’ for consumer ‘project_number:*************’. [429]” .
I was stuck with this issue, as this can happen if we try to write a large dataset.
This issue I tried checking this in the forum but have the solution to check with Google API.
Some of the similar issues: Gsuite Write Cell error inn spreadsheet.
As per the solution:Usage limits | Sheets API | Google Developers
According to this, the error I have got is “Write requests per minute per user” this has limitations and is fixed.
To solve this issue we either need to call some batch write type of API, range by range.
I am unaware of how to solve this issue or if can we use Batch Spreadsheet Updates Activity (https://docs.uipath.com/activities/docs/gsuite-batch-update-values-scope).
If so how it can help me solve this issue?
I tried using it like this
But it adds only one row, not sure how to use it.
Kindly give your valuable input to solve this issue.