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 dateJoin 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.
I'm using a measure to add the total number of values in the Customer Value column, however as there are duplicate values in the first two columns the Customer Value column is ingoring the duplicates values. Whats an easy fix to count all values when there are duplicates involved?
Im using this -> Measure = distinctcount('Table'[Sales Rep]) *5 / Table[Customer Value]
Sales Rep | Customer Name | Customer ID | Customer Value |
Bob A | Customer A | CUST-678 | 1.0 |
Bob A | Customer A | CUST-678 | 1.0 |
Frank | Customer B | CUST-124 | 1.5 |
Frank | Customer B | CUST-124 | 2.5 |
Mark | Customer C | CUST-690 | 2.5 |
Solved! Go to Solution.
Hi @CMC
Please try following steps:
1.Please create a measure as shown below.
Measure = SUM('Sheet1'[Customer Value])/5
2.Please create a measure called Sales Rep Utilisation %.
Sales Rep Utilisation % = AVERAGEX('Sheet1',[Measure])
3.In report page, you can get result you want.
Best Regards
Hi @CMC
Please try following steps:
1.Please create a measure as shown below.
Measure = SUM('Sheet1'[Customer Value])/5
2.Please create a measure called Sales Rep Utilisation %.
Sales Rep Utilisation % = AVERAGEX('Sheet1',[Measure])
3.In report page, you can get result you want.
Best Regards
Here is a copy of the Dashboard. All I Want to change is the %170 value from a total value to an average (%34 average) across all sales reps and just for that card.
You should use CALCULATE with changing context.
Could you give more information about your calculation?
hi please see above for more info
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 |
---|---|
16 | |
8 | |
7 | |
7 | |
6 |
User | Count |
---|---|
23 | |
11 | |
10 | |
10 | |
8 |