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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Dear forum members,,
I have a rather easy appearing topic, but just can't get to the right DAX formula.
I'd like to show whether a part number (Sys_Plant_CAM) has a value equal zero in a certain column [lo_indreq] or not. The only obstacle is that the part number has various rows for single dates - some zero and some not zero.
I thought it would not be difficult using a Measure like the following to fill the total sum for all those part numbers:
Thanks for any help how to solve the issue.
Solved! Go to Solution.
I think you want this instead:
CALCULATE (
SUM ( 'v_md04_latest'[lo_indreq] ),
ALLEXCEPT ( 'v_md04_latest', 'v_md04_latest'[Sys_Plant_CAM] )
)
You want to remove all filters except the Sys_Plant_CAM.
I think you want this instead:
CALCULATE (
SUM ( 'v_md04_latest'[lo_indreq] ),
ALLEXCEPT ( 'v_md04_latest', 'v_md04_latest'[Sys_Plant_CAM] )
)
You want to remove all filters except the Sys_Plant_CAM.
Thanks Alexis,
it worked perfectly as expected.
Try:
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 11 | |
| 9 | |
| 7 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 24 | |
| 15 | |
| 14 | |
| 12 | |
| 9 |