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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
AllanBerces
Post Prodigy
Post Prodigy

Sum per Type_Measure

Hi good day,

Can anyone help me on my measure. from my table i want the sum per type per plan date. When i used my meaure i dont get the result i need. pls correct my measure.

 

Plan_day =
CALCULATE(
SUM('Table'[Plan Hrs]),
ALLEXCEPT('Table', 'Table'[PlanDate])
)
 
AllanBerces_0-1742353359342.png

DESIRED OUTPUT

AllanBerces_1-1742353409117.png

 

Thank you

1 ACCEPTED SOLUTION
vicky_
Super User
Super User

You're 99% of the way there - just need to add your type back into the ALLEXCEPT part:

Plan_day =
CALCULATE(
SUM('Table'[Plan Hrs]),
ALLEXCEPT('Table', 'Table'[PlanDate], 'Table'[Type])
)

btw - not sure what the rest of your data and requirements look like, but you could also rewrite the above as:

Plan_day =
CALCULATE(
SUM('Table'[Plan Hrs]),
REMOVEFILTERS('Table'[Trade])
)

View solution in original post

2 REPLIES 2
vicky_
Super User
Super User

You're 99% of the way there - just need to add your type back into the ALLEXCEPT part:

Plan_day =
CALCULATE(
SUM('Table'[Plan Hrs]),
ALLEXCEPT('Table', 'Table'[PlanDate], 'Table'[Type])
)

btw - not sure what the rest of your data and requirements look like, but you could also rewrite the above as:

Plan_day =
CALCULATE(
SUM('Table'[Plan Hrs]),
REMOVEFILTERS('Table'[Trade])
)

Hi @vicky_ thank you very much for the reply

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.