ISTEXT DAX Function in Power BI
The ISTEXT DAX function returns TRUE if the value is text; otherwise, FALSE.
DAX Syntax ISTEXT(value)
The parameter value specifies the value we want to check.
Example: Let’s create a measure with name “ISTEXT Measure”.
DAX
ISTEXT Measure = ISTEXT("Ashish")
The output of the above dax function is shown below:
