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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi all,
I have a sales table and one column is called "shipment quantity", some quantities are negative and I want to delte them, but the harder part is that I also want to delete the associated positive one.
For example, I surely want to delete line 3, but I also need to delete line 2. Line 2 and line 3 are exactly the same except for shipment quantity.
Thank you in advance,
Hi man,
How do you sum it up?
I have many rows, most of them are normal ones with shipment quantity a positive number.
How do you only sum up those 2 that are problematic.
@Anonymous
what happened in reality is that some shipments are shipped and bounced back. hope this helps,
HI @ht2567306
measure = Calculate(sum(table[col]), allexcept(table,table[column]))
And filter to exclude zero.
@Anonymous hey,
would you mind explaning a bit about
measure = Calculate(sum(table[col]), allexcept(table,table[column]))
I dont think this will do the trick.
Hi @ht2567306 ,
Create a calculated column:
Column = CALCULATE(SUM('Table'[shipment quantity]),ALLEXCEPT('Table','Table'[SO NO],'Table'[date]))
Then filter your data:
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai
User | Count |
---|---|
97 | |
78 | |
77 | |
49 | |
26 |