Funzione ISLOGICAL (DAX)
Verifica se un valore è un valore logico (TRUE o FALSE) e restituisce TRUE o FALSE.
Sintassi
ISLOGICAL(<value>)
Parametri
Termine |
Definizione |
---|---|
value |
Valore che si desidera verificare. |
Valore proprietà/Valore restituito
TRUE se si tratta di un valore logico. FALSE se si tratta di qualunque valore diverso da TRUE OR FALSE.
Esempio
Nei tre esempi seguenti viene mostrato il comportamento di ISLOGICAL.
//RETURNS: Is Boolean type or Logical
=IF(ISLOGICAL(true), "Is Boolean type or Logical", "Is different type")
//RETURNS: Is Boolean type or Logical
=IF(ISLOGICAL(false), "Is Boolean type or Logical", "Is different type")
//RETURNS: Is different type
=IF(ISLOGICAL(25), "Is Boolean type or Logical", "Is different type")