.net - Google Sheets API returns null for inputValue -
i'm trying formula out of cell not final value
// a1 www.google.com // b1 =a1 cell.inputvalue // value null. want value: =a1 cell.value // equals www.google.com. again not value i'm looking for.
according googles api documentation formula suppose in inputvalue property
https://developers.google.com/google-apps/spreadsheets/#working_with_cell-based_feeds
thoughts?
the answer basic url not contain inputvalue formula.
https://spreadsheets.google.com/feeds/cells/spreadsheetid/worksheetid/private/values
you have use full projection hydrated properties.
cellquery cellquery = new cellquery(key, "od6", "private", "full");
Comments
Post a Comment