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.
I want to add up rows by First Name. So wherever there is a first name repeated I want to add them up so that the calculation of the rows give me an effort value of 1. For example I want to add the effort by the first name Chandni which is repeated.
Solved! Go to Solution.
Hi @Anonymous ,
You may use ALLEXCEPT() so your formula should be something like:
Measure =
CALCULATE ( <aggregation>, ALLEXCEPT ( Table, Table[FirstName] ) )
But Power BI automatically aggregages values whenever they are added to a visual. Power BI sums up, if applicable the values of a column. If you add First Name and Effort Located to a table, it will show you the total Effort Allocated for a each unique first name unless another column is added that increases an aggregation's granularity such as same first names but different last names.
What formula should i use to write the same for a column. I will be using that for my traffic light system then
Try this as a measure
CALCULATE (
SUM ( 'Table'[Effort Allocated] ),
ALLEXCEPT ( 'Table', 'Table'[First Name] )
)
Replace Table with the actual table name.
ITS GIVING ME WRONG RESULTS:
Hi @Anonymous ,
Please elaborate.
So it should 1 but its showing different sum
Please show me a screenshot of your formula on the formula bar. It seems to me that you have used ALL instad of ALLEXCEPT.
I just used pivoting and it is working now
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 |
---|---|
74 | |
73 | |
56 | |
38 | |
31 |
User | Count |
---|---|
83 | |
64 | |
63 | |
49 | |
45 |