Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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