We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When a cell value is: { type: "REF", message: "Circular dependency detected. To resolve with iterative calculation, see File > Settings.", }
The formatted value is "#REF!".
Whereas when I use @googleapis/sheet to access that cell that shows "#REF!", I get the value that is displayed:
import google from "@googleapis/sheets"; const sheets = google.sheets({ version: "v4", auth: serviceAccountAuth }); const doc = await sheets.spreadsheets.get({ spreadsheetId: SHEET_ID }); const sheetTitle = doc.data?.sheets?.[1]?.properties?.title; const sheet = await sheets.spreadsheets.values.get({ spreadsheetId: SHEET_ID, range: `${sheetTitle}!A1:Z100`, }); console.log(sheet.data.values[37][1]);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When a cell value is:
{ type: "REF", message: "Circular dependency detected. To resolve with iterative calculation, see File > Settings.", }
The formatted value is "#REF!".
Whereas when I use @googleapis/sheet to access that cell that shows "#REF!", I get the value that is displayed:
The text was updated successfully, but these errors were encountered: