DAX Information - ISNONTEXT function


Advertisements


Description

Checks if a value is not text, and returns TRUE or FALSE.

Syntax

ISNONTEXT (<value>) 

Parameters

Sr.No. Parameter & Description
1

value

The value you want to check.

Return Value

TRUE or FALSE.

Remarks

  • An empty string is considered as text.
  • A blank cell is considered as non-text.

Example

= ISNONTEXT([Athlete]) 

This DAX formula returns a column of values with TRUE, if Athlete row value is Blank and FALSE if Athlete name exists.


dax_functions_information.htm

Advertisements