Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi, apologies if this has been answered in another thread, perhaps I am not phrasing my question correctly.
I have data that looks like this (each row is a 'job'):
Region | Status | Status Key |
West Midlands | Complete | 1 |
West Midlands | Complete | 1 |
West Midlands | Not Complete | 0 |
East Midlands | Complete | 1 |
East Midlands | Complete | 1 |
East Midlands | Complete | 1 |
North East | Not Complete | 0 |
North East | Not Complete | 0 |
North East | Complete | 1 |
On a clustered chart, I want to show the Region on the Axis, and the Status as the legend.
For each region, I want to know the total no. of Jobs in that region, and then beside it the % complete.
Can anyone help please?
Solved! Go to Solution.
Hi @Aimeeclaird ,
Based on your description, you can create these two measures:
Total = COUNTROWS('Table')
Percentage =
VAR _complete =
CALCULATE ( COUNT ( 'Table'[Region] ), 'Table'[Status] = "Complete" )
RETURN
_complete / [Total]
Attached a sample file in the below, hopes to help you.
Best Regards,
Yingjie Li
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Aimeeclaird ,
Based on your description, you can create these two measures:
Total = COUNTROWS('Table')
Percentage =
VAR _complete =
CALCULATE ( COUNT ( 'Table'[Region] ), 'Table'[Status] = "Complete" )
RETURN
_complete / [Total]
Attached a sample file in the below, hopes to help you.
Best Regards,
Yingjie Li
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
109 | |
98 | |
96 | |
38 | |
36 |
User | Count |
---|---|
151 | |
125 | |
75 | |
74 | |
53 |