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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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])
)
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 37 | |
| 33 | |
| 33 | |
| 29 |
| User | Count |
|---|---|
| 132 | |
| 90 | |
| 78 | |
| 66 | |
| 65 |