Link Search Menu Expand Document

SSpread.IsFormulaValid Method

Explanation Returns whether the formula format is valid.
Call format IsFormulaValid(formula)
Return value $TRUE if the format is valid, $FALSE if the format is invalid
Arguments formula formula
Exception None
Example of use
    print(IsFormulaValid("1+1"), "\n");
    print(IsFormulaValid("A1+B1"), "\n");
    print(IsFormulaValid("E=mc2"), "\n");
    
Related item Formula property
ReCalcCell method