Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 |
---|---|
72 | |
69 | |
36 | |
25 | |
22 |
User | Count |
---|---|
97 | |
92 | |
53 | |
45 | |
40 |