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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
pingi14
Frequent Visitor

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors