I want to use a function on a cell with gspread, how does it work?
tried this:
cell_b2 = worksheet.COUNT(D3,E7).value
the function I want to execute using gspread
does not work
I want to use a function on a cell with gspread, how does it work?
tried this:
cell_b2 = worksheet.COUNT(D3,E7).value
the function I want to execute using gspread
does not work
Hi unfortunately it does not work this way.
In order to use a spreadsheet function (like
COUNTorIFetc) you must update the cell where you want that function using methods like:update_acellthat will update a single celle with the new content.Example:
then the result can be seen in the spreadsheet in the worksheet at the cell A1.