Forum Discussion
VbOnline
3 years agoFrequent Visitor
Dynamic Measure with Visual Filter - How Power BI works?
Hi All, I have a question with regards to creating a dynamic measure which inturn has multiple measure calculations happenning within it. The way the dynamic measure is used in the report is,...
VbOnline
3 years agoFrequent Visitor
Just to add additional information, when I look at the Query issued by Power BI in Dax Studio or Performance Analyzer, the below is what it looks like:
DEFINE VAR __DS0FilterTable =
TREATAS({"Cleanliness"}, 'DynamicScore'[ItemName])
EVALUATE
SUMMARIZECOLUMNS(
__DS0FilterTable,
"MinItemName", IGNORE(CALCULATE(MIN('DynamicScore'[ItemName])))
)