What's the formula for fixing Invalid column types?
Specific example:
I have a text/number column for info from another sheet; one cell is a date and I'm getting the "Invalid Column Value" error.
Smartsheet suggests this help article
https://help.smartsheet.com/articles/2476176-formula-error-messages#toc--invalid-column-value
And gives the example of this for a text/number =MAX([Due Date]1, [Due Date]52)
with this fix: =IFERROR(“Not a number!”, MAX([Due Date]1, [Due Date]5))
So I tried it for my formula =INDEX({Q120}, MATCH([Task Name]$1, {FacilityQ120}, 0))
(all my other text/number formulas with this same format work)
=IFERROR(“Not a number!”,INDEX({Q120}, MATCH([Task Name]$1, {FacilityQ120}, 0)))
and it comes back unparsable. Can someone help me with this error and in general what's a good way to bypass this "Invalid column value" error?