We are trying to query a Google Spreadsheet that has some fields with #N/A in them.
#N/A errors in Google Spreadsheet indicate missing information and signal functions to cease calculation.
We just want want these #N/A values to be treated as NULLs.
What is the best way to do this using the CData connector for Google Spreadsheet?
I presume setting your formulas to ifError isn't an option in your spreadsheet? That seems like the most sensible. Example,
=iferror(vlookup(foo),)
returnsnull
instead of#N/A
.Assuming not, here's an app script that could review your data and replace values, or create a new sheet in your spreadsheet with updated values.