-
Notifications
You must be signed in to change notification settings - Fork 950
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unkown Function returning #NAME? #504
Comments
Looks like it's a function with the localised name since it's missing in Google spreadsheets function list https://support.google.com/docs/table/25273?hl=en but present if I enable Portuguese. I've just released a new version of gspread (2.0.0) which uses a newer version of Sheets API — v4. Try to update and run your code to see if it solves the issue. |
i figure out the portuguese question, then I wrote all my functions in english and the data appears in my sheet, but when I do the request "worksheet.acell('A1').value" for example, it gives #NAME? and the others cells with data give a blank. I already installed the version 2.0.0 of gspread but it gives the same problem. Can you help me on this? Best regards, |
Sure, can you provide a more detailed example (step by step) of what you do? |
First, I get the credentials by the json_keyfile_name:
Then I use the authorize: After the authorization, I open my sheet: Now comes the problem. First of all I update the cell 'A1" of my sheet with a function like this: And it worked, because in my sheet, the table with the data appears, but when a I run a code to get those datas with And when a run the code like that with another cell, like Best regards, |
Hi @Rodrigoaz7, if you look at the following link, the error "#NAME" happens Chen your formula is not correct. See here error number 5 errors list In your cas this is strange because you can see the values when opening your spreadsheet in a web browser. Could provide some details, the exact formula you use? Are all functions in your formula accessible by gspread? Perhaps your formula access an other spreadsheets that gspread can't access? |
Hello,
I was just using some lines of code like this one: wks.update_acell('A1', formula), and had worked fine. but now I'm using a different formula =googlefinance("petr3"; "price"; DIATRABALHO(HOJE();-10);HOJE()).
But the Sheet returnin the following error: "unkown function DIATRABALHO", but that function it's correct, even when I put the same formula directly into the sheet, it work fine.
What can I do this work just using update_acell ??
The text was updated successfully, but these errors were encountered: