ISLOGICAL
檢查 value 是否為邏輯 value、(TRUE
orFALSE
),and 傳回 TRUE
orFALSE
。
語法
ISLOGICAL(<value>)
參數
術語 | 定義 |
---|---|
value |
您想要測試的 value。 |
傳回 value
TRUE
if
value 是邏輯 value;FALSE
ifTRUE
ORFALSE
以外的任何 value。
言論
在匯出數據行中使用 or 數據列層級安全性 (RLS) 規則時,支援此函式 not 用於 DirectQuery 模式。
例
下列三個範例顯示 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")