User DocsTemplatesAnyDB FormulasFunctionsISNUMERICOn this pageISNUMERIC Checks whether a string is numeric. Syntax ISNUMERIC(text, [options]) Arguments text: The string to test. options (optional): Object such as { no_symbols: true } to disallow +/-. Example ISNUMERIC("12345") → TRUEISNUMERIC("-123", { no_symbols: true }) → FALSE