Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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.
DESIRED OUTPUT
Thank you
Solved! Go to Solution.
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])
)
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])
)
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 69 | |
| 60 | |
| 47 | |
| 20 | |
| 16 |