Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join 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.

Reply
divsforeal
Frequent Visitor

Sum of column (Score) by ID (dealing with blank values)

I have a complex situation. Im trying to calculate sum of Pillar Score by Unique ID (Screenshot below). I want DAX to calculate only the sum of 2 values and display on all rows. (Screenshot below)

 

Required Output:

divsforeal_1-1701983953770.png

Current Output:

divsforeal_2-1701984036038.png

DAX Expressions:

Pillar Score:

CALCULATE(AVERAGE('Table'[CC_Pillar_Score]), ALLEXCEPT('Table', 'Table'[Unique ID], 'Table'[Pillar]))
Sum of Pillar Score: (Current Output) 
CALCULATE(SUM('Table'[Pillar Score]), FILTER(ALL('Table'), 'Table'[Unique ID] = EARLIER('Table'[Unique ID])))
 
Looking for some help to get the required output. Thanks in advance.
1 ACCEPTED SOLUTION
ryan_mayu
Super User
Super User

@divsforeal 

pls try this

Measure = sumx(FILTER(all('Table'),'Table'[Unique ID]=max('Table'[Unique ID])),[pillar score2])

11.PNG





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

2 REPLIES 2
Ashish_Mathur
Super User
Super User

Hi,

Try this calculated column formula

=CALCULATE(SUM('Table'[Pillar Score]), FILTER('Table', 'Table'[Unique ID] = EARLIER('Table'[Unique ID])))

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
ryan_mayu
Super User
Super User

@divsforeal 

pls try this

Measure = sumx(FILTER(all('Table'),'Table'[Unique ID]=max('Table'[Unique ID])),[pillar score2])

11.PNG





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.