How to update cell values of a Column in Google Sheet

Hi @anmita

Write cell activity can’t be used to update range of cell, it used to update single cell value. You can use write cell activity to update A2 and A3 cell and Auto Fill Range activity to update remaining cell.

Or
Keep the cell value in array. Loop through each cell value using for each and use write cell activity to update the cell value.

Hope this helps