Informazioni DAX - Funzione ISTEXT
Descrizione
Controlla se un valore è testo e restituisce VERO o FALSO.
Sintassi
ISTEXT (<value>)
Parametri
Sr.No. | Parametro e descrizione |
---|---|
1 | value Il valore che vuoi controllare. |
Valore di ritorno
Vero o falso.
Osservazioni
Le stringhe vuote sono considerate come testo.
Le celle vuote, BLANK () sono considerate non di testo.
Esempio
= ISTEXT("") returns TRUE.
= ISTEXT("AB") returns TRUE.
= ISTEXT(4) returns FALSE.
= ISTEXT(TRUE()) returns FALSE.