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 Team,
It will be much appreciated if anyone can help me in deriving a logic to calculate the overall Average against each customer by excluding the current line supplier.
Example:
The Dax should automatically eliminate the current line's Supplier and should calculate the average for the rest of the Suppliers.
Supplier | Sales | Comparative Average |
A | 3 | Average(b&C) |
B | 5 | Average(A&C) |
C | 4 | Average(B&C) |
Any suggestion will help in my analysis to calculate the benchmarking against each other.
Thanks so much for your time,
Kind Regards
Sha
Solved! Go to Solution.
Hi,
I think you need that one:
Comparative Average =
CALCULATE(
AVERAGE('Sample'[Sales]);
FILTER(
ALLSELECTED('Sample');
NOT('Sample'[Supplier] in VALUES('Sample'[Supplier])))
)
Basic measures:
Proud to be a Super User!
Hi,
I think you need that one:
Comparative Average =
CALCULATE(
AVERAGE('Sample'[Sales]);
FILTER(
ALLSELECTED('Sample');
NOT('Sample'[Supplier] in VALUES('Sample'[Supplier])))
)
Basic measures:
Proud to be a Super User!
Hi Bolfri,
Thanks for the Idea, It worked Exactly the way I wanted. Much appreciated.
kind Regards
Sha
Step 1
Thanks, Ritesh, for your suggestion.
Much appreciated.
Kind Regards
Sha
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
72 | |
71 | |
37 | |
30 | |
28 |
User | Count |
---|---|
91 | |
49 | |
45 | |
38 | |
36 |