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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
adsam
Frequent Visitor

Count of invoices below threshold DAX

Hi, 

I m trying to create a measure to count number of invoices below threshold, threshold table is defined as below. 

my measure is working somehow but not giving total number of invoices, there is something wrong.

kindly need assistance. 

Filelink

 

Invoice Count Below threshold = VAR CurrentInvoiceAmount = [Inv. Amt SAR]
		VAR ThresholdValue =
		CALCULATE(
			MAX(Matrix_Invoice_Value[Value]),
			TREATAS(
				VALUES(Route_Master[Country]),
				Matrix_Invoice_Value[Country]
			),
			TREATAS(
				VALUES(Customer_Master[Trade Category]),
				Matrix_Invoice_Value[Customer Type]
			),
			TREATAS(
				VALUES(Route_Master[Route Type3]),
				Matrix_Invoice_Value[Route Type3]
			),
			TREATAS(
				VALUES(Route_Cat[Attribute]),
				Matrix_Invoice_Value[Attribute]
			)
		)
		RETURN
			CALCULATE(
				[Invoice Count],
				FILTER(
					Daily_invioces,
					AND(
						NOT (ISBLANK(ThresholdValue)),
						CurrentInvoiceAmount < ThresholdValue
					)
				)
			)
	

 

threshold table

Threshold Table Min invoice target valueThreshold Table Min invoice target value

Measure result:

Result of my measureResult of my measure

Data model

Data ModelData Model

 

1 ACCEPTED SOLUTION
adsam
Frequent Visitor

I was able to get desired result from below DAX:

 

Invoice Count Below threshold = 
			SUMX(
				Daily_invioces,
                VAR CurrentInvoiceAmount = [Inv. Amt SAR]
                VAR ThresholdValue =
                CALCULATE(
                    MAX(Matrix_Invoice_Value[Value]),
                    TREATAS(
                        VALUES(Route_Master[Country]),
                        Matrix_Invoice_Value[Country]
                    ),
                    TREATAS(
                        VALUES(Customer_Master[Trade Category]),
                        Matrix_Invoice_Value[Customer Type]
                    ),
                    TREATAS(
                        VALUES(Route_Master[Route Type3]),
                        Matrix_Invoice_Value[Route Type3]
                    ),
                    TREATAS(
                        VALUES(Route_Cat[Attribute]),
                        Matrix_Invoice_Value[Attribute]
                    )
                )
				RETURN IF(AND(
						NOT (ISBLANK(ThresholdValue)),
						CurrentInvoiceAmount < ThresholdValue
					),1
				)
			)

View solution in original post

3 REPLIES 3
adsam
Frequent Visitor

I was able to get desired result from below DAX:

 

Invoice Count Below threshold = 
			SUMX(
				Daily_invioces,
                VAR CurrentInvoiceAmount = [Inv. Amt SAR]
                VAR ThresholdValue =
                CALCULATE(
                    MAX(Matrix_Invoice_Value[Value]),
                    TREATAS(
                        VALUES(Route_Master[Country]),
                        Matrix_Invoice_Value[Country]
                    ),
                    TREATAS(
                        VALUES(Customer_Master[Trade Category]),
                        Matrix_Invoice_Value[Customer Type]
                    ),
                    TREATAS(
                        VALUES(Route_Master[Route Type3]),
                        Matrix_Invoice_Value[Route Type3]
                    ),
                    TREATAS(
                        VALUES(Route_Cat[Attribute]),
                        Matrix_Invoice_Value[Attribute]
                    )
                )
				RETURN IF(AND(
						NOT (ISBLANK(ThresholdValue)),
						CurrentInvoiceAmount < ThresholdValue
					),1
				)
			)
adsam
Frequent Visitor

it didn't solve my problem, I think we need to use iterator function, which will scan all "daily invoice" table and count invoices which are below criteria mentioned in threshold table. Please help.

Greg_Deckler
Community Champion
Community Champion

@adsam First, please vote for this idea: https://ideas.powerbi.com/ideas/idea/?ideaid=082203f1-594f-4ba7-ac87-bb91096c742e

This looks like a measure totals problem. Very common. See my post about it here: https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376

Also, this Quick Measure, Measure Totals, The Final Word should get you what you need:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907

Also: https://youtu.be/uXRriTN0cfY
And: https://youtu.be/n4TYhF2ARe8



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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