ISLOGICAL
Se aplica a:columna CalculadaTabla calculadaMeasurecálculo visual
Comprueba si un value es un valuelógico , (TRUE
orFALSE
), and devuelve TRUE
orFALSE
.
Sintaxis
ISLOGICAL(<value>)
Parámetros
Término | Definición |
---|---|
value |
El value que desea probar. |
Devolver value
TRUE
if el value es un valuelógico; FALSE
if cualquier value distinto de TRUE
ORFALSE
.
Observaciones
Esta función se not se admite para su uso en el modo DirectQuery cuando se usa en columnas calculadas or reglas de seguridad de nivel de fila (RLS).
Ejemplo
En los tres ejemplos siguientes se muestra el comportamiento de 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")