共用方式為


ISLOGICAL

適用於:導出數據行計算數據表Measure視覺計算

檢查 value 是否為邏輯 value、(TRUEorFALSE),and 傳回 TRUEorFALSE

語法

ISLOGICAL(<value>)

參數

術語 定義
value 您想要測試的 value。

傳回 value

TRUE if value 是邏輯 value;FALSEifTRUEORFALSE以外的任何 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")

資訊函式