Forum Discussion
Prudhviraj
8 years agoFrequent Visitor
Create Level Based Measures in Which should not change based on Filter
Hi Guys,
Can any one help me out, how can I create a level based measures in Power BI Desktop.
User will select a detail level column value will come from drill through filter. I have to show detail level count for that selected value and also show the count for other levels.
Quick response would be really appreciable.
Thanks,
Prudviraj
Hi Prudhviraj,
The detailed level count could be like this:
detailed_level = count('table'[Dealer])The all the levels could be like this:
all_level = CALCULATE ( COUNT ( 'table'[Dealer] ), ALL ( 'table'[Dealer] ) )
Or you can post the expected results.
Best Regards,
Dale
2 Replies
- v-jiascu-msft
Microsoft Employee
Hi Prudhviraj,
The detailed level count could be like this:
detailed_level = count('table'[Dealer])The all the levels could be like this:
all_level = CALCULATE ( COUNT ( 'table'[Dealer] ), ALL ( 'table'[Dealer] ) )
Or you can post the expected results.
Best Regards,
Dale
- v-jiascu-msft
Microsoft Employee