SELECTEDMEASURE
表達式用於計算專案,or 動態 format 字串來參考內容中的 measure。
語法
SELECTEDMEASURE()
參數
None
傳回 value
評估計算專案 orformat 字串時目前在內容中的 measure 參考。
備註
只能在表達式中參考計算專案 orformat 字串。
在匯出數據行中使用 or 數據列層級安全性 (RLS) 規則時,支援此函式 not 用於 DirectQuery 模式。
範例
下列計算項目表示式會計算內容中任何 measureyeardate。
CALCULATE(SELECTEDMEASURE(), DATESYTD(DimDate[Date]))
下列表達式可用來根據 value 是否為數百、千 or 百萬,動態調整 measure 的 format 字串。
SWITCH(
TRUE(),
SELECTEDMEASURE() < 1000,"$#,##0", //Values less than 1000 have no text after them
SELECTEDMEASURE() < 1000000, "$#,##0,.0 K", //Values between 1000 and 1000000 are formatted as #.## K
"$#,##0,,.0 M" //Values greater than 1000000 are formatted as #.## M
)