Hi all,
I am learning how to use Python + Google Sheet API to update GoogleSheet
I read the developers guide on spreadsheets().values().update()
As shown in the image below, I only want to update specific cells, not a range.
How can I update only cells I want?
https://ibb.co/qp8jpq3
I am learning how to use Python + Google Sheet API to update GoogleSheet
I read the developers guide on spreadsheets().values().update()
As shown in the image below, I only want to update specific cells, not a range.
How can I update only cells I want?
https://ibb.co/qp8jpq3
ssName = sheet_ELCSV.title + '!' cell_range = 'A2,B2,D2,A3,K3' values = ( ('Sell','-2.17','27760.0476'), ('Fee', '-2.38285229') ) value_range = { 'majorDimension' : 'ROWS', 'values': values } service.spreadsheets().values().update( spreadsheetId = ssID, valueInputOption = 'USER_ENTERED', range = ssName + cell_range, body = value_range ).execute()