ISLOGICAL
檢查某值是否為邏輯值 (TRUE 或 FALSE),並傳回 TRUE 或 FALSE。
語法
ISLOGICAL(<value>)
參數
詞彙 | 定義 |
---|---|
value | 要測試的值。 |
傳回值
如果值為邏輯值,則為 TRUE;如果為 TRUE 或 FALSE 以外的任何值,則為 FALSE。
備註
在計算結果欄或資料列層級安全性 (RLS) 規則中使用時,不支援在 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")