ISNUMBER is a DAX function that checks whether a value is a number and returns TRUE or FALSE accordingly.
Syntax
ISNUMBER( Value )
Argument | Properties | Description |
---|---|---|
Value | The value you want to test. |
ISNUMBER is a DAX function that checks whether a value is a number and returns TRUE or FALSE accordingly.
ISNUMBER( Value )
Argument | Properties | Description |
---|---|---|
Value | The value you want to test. |
TRUE
if the value is numeric; otherwise FALSE
.
This function is not supported for use in DirectQuery mode when used in calculated columns or row-level security (RLS) rules.
The following three samples show the behavior of ISNUMBER.
//RETURNS: Is number
= IF(ISNUMBER(0), "Is number", "Is Not number")
//RETURNS: Is number
= IF(ISNUMBER(3.1E-1),"Is number", "Is Not number")
//RETURNS: Is Not number
= IF(ISNUMBER("123"), "Is number", "Is Not number")
Other functions related to ISNUMBER are:
2023-2024 © BI Gorilla. All rights are reserved. Information from Microsoft docs is property of Microsoft Corp. | Privacy Policy