Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
I have data in this format:
Category | Area | Requirement |
Cat1 | R1 | 1 |
Cat1 | R1 | |
Cat1 | R2 | |
Cat1 | R3 | 2 |
Cat1 | R4 | 3 |
Cat1 | R5 |
I need to display the count and % of areas with and without requirements. So that is looks like this:
Area | Count of Areas with no requirement | % | Count of Areas with requirement | Total | % | |
Cat1 | 2 | 40% | 3 | 60% | 5 | 100 |
Not sure how to approach this.
Solved! Go to Solution.
Hi @TomSinAA
You can refer to the following measure
Count of Areas with no requirement = var a=SELECTCOLUMNS(FILTER('Table',[Requirement]<>BLANK()),"a",[Area])
return CALCULATE(DISTINCTCOUNT('Table'[Area]),'Table'[Area] in a=FALSE())
Count of Areas with requirement = DISTINCTCOUNT('Table'[Area])-[Count of Areas with no requirement]
Areas with no requiremen t% = DIVIDE([Count of Areas with no requirement],CALCULATE(DISTINCTCOUNT('Table'[Area])))
Areas with requiremen t% = DIVIDE([Count of Areas with requirement],CALCULATE(DISTINCTCOUNT('Table'[Area])))
Output
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @TomSinAA
You can refer to the following measure
Count of Areas with no requirement = var a=SELECTCOLUMNS(FILTER('Table',[Requirement]<>BLANK()),"a",[Area])
return CALCULATE(DISTINCTCOUNT('Table'[Area]),'Table'[Area] in a=FALSE())
Count of Areas with requirement = DISTINCTCOUNT('Table'[Area])-[Count of Areas with no requirement]
Areas with no requiremen t% = DIVIDE([Count of Areas with no requirement],CALCULATE(DISTINCTCOUNT('Table'[Area])))
Areas with requiremen t% = DIVIDE([Count of Areas with requirement],CALCULATE(DISTINCTCOUNT('Table'[Area])))
Output
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
113 | |
96 | |
91 | |
82 | |
69 |
User | Count |
---|---|
159 | |
125 | |
116 | |
111 | |
95 |