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! It's time to submit your entry. Live now!
Simple problem: I want to calculate sum of sales for the entire month, but ignore one column that is in the view of a table. This does not seem to be clear or easy, I tried this below thinking this could work. It instead shows the sum of calls for each and every call_queue normally.
Solved! Go to Solution.
Hi @Anonymous,
Thanks for the reply from ryan_mayu.
Could you please share a bit more about your data?
Do you want to sum total excluding CALL_QUEUE column in your table?
Please create a measure and write the DAX as below:
Total Calls (Month) =
CALCULATE(
SUM('Table'[CALLS]),
REMOVEFILTERS('Table'[CALL_QUEUE], 'Table'[REGION])
)
Here is the final testing result:
Best Regards,
Qi
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
Hi @Anonymous,
Thanks for the reply from ryan_mayu.
Could you please share a bit more about your data?
Do you want to sum total excluding CALL_QUEUE column in your table?
Please create a measure and write the DAX as below:
Total Calls (Month) =
CALCULATE(
SUM('Table'[CALLS]),
REMOVEFILTERS('Table'[CALL_QUEUE], 'Table'[REGION])
)
Here is the final testing result:
Best Regards,
Qi
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
Thanks, this was a great help!
could you pls provide some sample data and expected output?
Proud to be a Super User!
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
| User | Count |
|---|---|
| 50 | |
| 41 | |
| 32 | |
| 26 | |
| 24 |
| User | Count |
|---|---|
| 130 | |
| 128 | |
| 59 | |
| 45 | |
| 45 |