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! Don't miss your chance! Learn more
Quick one for your masters. Thanks in advance.
I am trying to calculate a sum which filters out some measures that I created.
Customer Billed = CALCULATE(SUM(Sheet1[Total Hours]), FILTER(Sheet1 <> [ATO] || [Internal] || [Lost Time Hours] || [MC Labor Hours] || [Travel Hours]))
I need the "Total Hours" sans the measures that I created "ATO", "INTERNAL", etc.
I know my measure is close, but I can't get it to work.
Solved! Go to Solution.
HI, i will try with:
CustomerBilled=
VAR NotBilleable=[ATO] + [Internal] + [Lost Time Hours] + [MC Labor Hours] + [Travel Hours]
RETURN
SUM(Sheet1[Total Hours]) - NotBilleable
Regards
Victor
Lima - Peru
HI, i will try with:
CustomerBilled=
VAR NotBilleable=[ATO] + [Internal] + [Lost Time Hours] + [MC Labor Hours] + [Travel Hours]
RETURN
SUM(Sheet1[Total Hours]) - NotBilleable
Regards
Victor
Lima - Peru
Perfect, sir. Thank you for your time.
Can you try:
Customer Billed = CALCULATE(SUM(Sheet1[Total Hours]), ALLEXCEPT (Sheet1, Sheet1[ATO], Sheet1[Internal], Sheet1[Lost Time Hours], Sheet1[MC Labor Hours], Sheet1 [Travel Hours])
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 |
|---|---|
| 70 | |
| 60 | |
| 47 | |
| 20 | |
| 16 |
| User | Count |
|---|---|
| 109 | |
| 108 | |
| 39 | |
| 27 | |
| 27 |