Nota
Pristup ovoj stranici zahteva autorizaciju. Možete pokušati da se prijavite ili promenite direktorijume.
Pristup ovoj stranici zahteva autorizaciju. Možete pokušati da promenite direktorijume.
Applies to:
Calculated column
Calculated table
Measure
Visual calculation
Checks if a value is text, and returns TRUE or FALSE.
Syntax
ISTEXT(<value>)
Parameters
| Term | Definition |
|---|---|
value |
The value you want to check. |
Return value
TRUE if the value is text; otherwise FALSE.
Remarks
- This function is not supported for use in DirectQuery mode when used in calculated columns or row-level security (RLS) rules.
- This function is an alias of ISSTRING.
Example
The following DAX query shows the behavior of the ISTEXT function.
EVALUATE
{
IF ( ISTEXT ( "text" ), "Is Text", "Is Non-Text" ), // RETURNS: Is Text
IF ( ISTEXT ( "" ), "Is Text", "Is Non-Text" ), // RETURNS: Is Text
IF ( ISTEXT ( 42 ), "Is Text", "Is Non-Text" ), // RETURNS: Is Non-Text
IF ( ISTEXT ( BLANK () ), "Is Text", "Is Non-Text" ) // RETURNS: Is Non-Text
}