Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
Anonymous
Not applicable

Equivalent to CountIF Excel Function

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

 

Example.png

 

I hope the picture and that someone can assist

 

Thanking you
Stephen Daff

 

1 REPLY 1
Anonymous
Not applicable

[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

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.