March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi all,
I have a table with sales and their goal as per below:
Opp Reps Goal
1 Dave 500
2 Dave 500
3 Jane 500
The goal is the same for each rep ( $100 per week)
My question is how to write a measure to only count goal once for each reps?
So i can create a table like this:
Reps Goal
Dave $500
Jane $500
Total $1,000
I need to display total so I can't choose do not sum.
Can any one advice me?
Thanks!
Irene
Solved! Go to Solution.
Try
sumx(summarize(table,table[Reps],"_max",max(Goal)),[_max])
Also refer
https://community.powerbi.com/t5/Desktop/SUM-of-AVERAGE/td-p/197013
Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution.
In case it does not help, please provide additional information and mark me with @
Thanks. My Recent Blogs -Decoding Direct Query - Time Intelligence, Winner Coloring on MAP, HR Analytics, Power BI Working with Non-Standard TimeAnd Comparing Data Across Date Ranges
Connect on Linkedin
You may try this formula to create another new measure as below:
New Goal =
SUMX ( VALUES ( 'Table'[Reps] ), [Goal] )
Regards,
Lin
Try
sumx(summarize(table,table[Reps],"_max",max(Goal)),[_max])
Also refer
https://community.powerbi.com/t5/Desktop/SUM-of-AVERAGE/td-p/197013
Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution.
In case it does not help, please provide additional information and mark me with @
Thanks. My Recent Blogs -Decoding Direct Query - Time Intelligence, Winner Coloring on MAP, HR Analytics, Power BI Working with Non-Standard TimeAnd Comparing Data Across Date Ranges
Connect on Linkedin
If the goal is the same, always, what about showing the average?
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
87 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |