Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi
I am trying to work out a percentage based on filtered measures. The first measure is number of "Active" suppliers. The second is number of those active suppliers who are marked as "High Risk" in another column. Then i would like to divide the two results "Active Suppliers High Risk" by "Active Suppliers" to give a percentage.
I have come up witht he below formula however it gives me 100% and i am not sure where i am going wrong. Any help would be appreciated.
Thank you, this worked!
hi, @Massingc1983
try below
Hi @Massingc1983 ,
I don't suggest you to use "ActiveSuppliers" part in "ABCHighRiskSuppliers", use DISTINCTCOUNT() function again in "ABCHighRiskSuppliers".
Active Supplier ABC =
VAR _ActiveSuppliers =
CALCULATE (
DISTINCTCOUNT ( 'Contract Append'[Supplier name] ),
'Contract Append'[Status] = "Active"
)
VAR _ABCHighRiskSuppliers =
CALCULATE (
DISTINCTCOUNT ( 'Contract Append'[Supplier name] ),
'Contract Append'[Status] = "Active",
'Contract Append'[2.2 Modern Slavery Risk Rating] = "High"
)
RETURN
DIVIDE ( _ABCHighRiskSuppliers, _ActiveSuppliers )
It works on myside. My Sample:
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you, this helped!
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
28 | |
12 | |
10 | |
10 | |
6 |