Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
From report 1(detailed report) there is a kpi already in place performance%, now i want a kpi for report 2 at summarized level.
want to see the percentage at sold to and store level, by doing an average on performance%.
Can you help me with the formulae.
Note : Performance% is a measure
@amitchandak
Report1 | |||
Sold-To | Store name | Material | Performance% |
BBB | BBB AM | M1 | 100% |
BBB | BBB AM | M2 | 100% |
BBB | BBB AM | M3 | 86% |
BBB | BBB AM | M4 | 86% |
BBB | BBB AM | M5 | 74% |
BBB | BBB AM | M6 | 40% |
BBB | BBB AM | M7 | 23% |
BBB | BBB AM | M8 | 14% |
BBB | BBB AM | M9 | 0% |
BBB | BBB AM | M10 | 0% |
AVG | 52% | ||
JB | JB H | M1 | 80% |
JB | JB H | M2 | 90% |
avg | 85% | ||
Report 2 | |||
Sold-To | Store name | Performance % | |
BBB | BBB AM | 52 | |
JB | JB H | 85 |
Solved! Go to Solution.
Hi @Kiran98480 ,
Please follow these steps:
(1) Create a new measure
AVG =
DIVIDE (
SUM ( 'Table'[Performance%] ), COUNT ( 'Table'[Store name] )
)
(2)Final output
Since I don't have specific sales data, I use measures as attribute columns, and you can replace them with sales columns yourself.
Best Regards,
Gallen Luo
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Kiran98480 ,
Please follow these steps:
(1) Create a new measure
AVG =
DIVIDE (
SUM ( 'Table'[Performance%] ), COUNT ( 'Table'[Store name] )
)
(2)Final output
Since I don't have specific sales data, I use measures as attribute columns, and you can replace them with sales columns yourself.
Best Regards,
Gallen Luo
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
69 | |
55 | |
37 | |
35 |
User | Count |
---|---|
85 | |
66 | |
59 | |
46 | |
45 |