75 internal static bool TryParseFormulaError(
string value, out
FormulaError error)
100 case "#GETTING_DATA":
116 internal static string FormulaErrorToString(
FormulaError error)
135 return "#GETTING_DATA";
137 throw new FormatException($
"An invalid error type '{error}' was specified");
Static class that contains shared enums for error cases.
FormulaError
Errors that can occur in formulas / functions.
@ GettingData
Indicate that a cell reference cannot be evaluated because the value for the cell has not been retrie...
@ DivisionByZero
Indicates that any number (including zero) or any error code is divided by zero.
@ Name
Indicates that what looks like a name is used, but no such name has been defined.
@ NotAvailable
Indicates that a designated value is not available.
@ Reference
Indicate that a cell reference cannot be evaluated.
@ Value
Indicates that an incompatible type argument is passed to a function, or an incompatible type operand...
@ NoError
Default value if no error has occurred (not an actual error type).
@ Number
Indicates that an argument to a function has a compatible type, but has a value that is outside the d...
@ Null
Indicates that two areas are required to intersect, but do not.
@ UnknownError
Value if a not yet defined value has occurred (not an actual error type).