DAX Information - ISTEXT function



Description

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

Syntax

ISTEXT (<value>) 

Parameters

Sr.No. Parameter & Description
1

value

The value you want to check.

Return Value

TRUE or FALSE.

Remarks

Empty strings are considered as text.

Blank cells, BLANK () are considered as non-text.

Example

= ISTEXT("") returns TRUE. 
= ISTEXT("AB") returns TRUE. 
= ISTEXT(4) returns FALSE. 
= ISTEXT(TRUE()) returns FALSE. 
dax_functions_information.htm
Advertisements