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! Get ahead of the game and start preparing now! Learn more
Good afternoon
I can never seem to get this right. I have a long listing of sales figures, where I am wanting to a CountIf on the the sales amounts that have an offset negative amount for the same customer
I hope the picture and that someone can assist
Thanking you
Stephen Daff
[Qty Offsets] = -- calculated column, not a measure var __customer = T[Customer Number] var __amount = T[Sales Amount] var __invNo = T[Invoice Number] var __qtyOffsetsForAmountNotZero = countrows( filter( T, T[Customer Number] = __customer, T[Sales Amount] = -__amount ) ) + 0 -- This is needed to force BLANK into 0 var __qtyOffsetsForAmountEquaToZero = countrows( filter( T, T[Customer Number] = __customer, T[Sales Amount] = 0, T[Invoice Number] <> __invNo ) ) + 0 var __qtyOffsets = if( __amount <> 0, __qtyOffsetsForAmountNotZero, __qtyOffsetsForAmountEquaToZero ) return __qtyOffsets -- Bear in mind that if the amount is 0 -- then we have to make sure that the -- invoice number is not equal to the -- current invoice number. This, of course, -- is not required if the amount <> 0.
Best
Darek
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 19 | |
| 13 | |
| 10 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 30 | |
| 28 | |
| 18 | |
| 11 | |
| 10 |