Athugasemd
Aðgangur að þessari síðu krefst heimildar. Þú getur prófað aðskrá þig inn eða breyta skráasöfnum.
Aðgangur að þessari síðu krefst heimildar. Þú getur prófað að breyta skráasöfnum.
Applies to:
Canvas apps
Cards
Copilot Studio
Desktop flows
Model-driven apps
Power Platform CLI
Dataverse functions
Power Pages
Tests whether a value is numeric.
Description
The IsNumeric function tests whether a value is numeric. Other kinds of values include Boolean, string, table, and record.
The return value is a Boolean true or false.
Syntax
IsNumeric( Value )
Examples
Formula | Description | Result |
---|---|---|
IsNumeric(1) | Evaluates if the number 1 is a number | true |
IsNumeric("1") | Evaluates if the text "1" is a number | true |
IsNumeric("A") | Evaluates if the text A is a number | false |
IsNumeric(1+1) | Evaluates if the outcome of 1+1 is a number | true |
IsNumeric("1+1") | Evaluates if the text 1+1 is a number | false |