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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

CountIFs for Data Integrity Report

I currently have an excel report that has multiple countifs for each data integrity check. What would be the best way to recreate this in BI? How would I recreate the countifs ? Measures for each 'Integrity Check'? Sample file attached. 

 

tragaller_2-1602616734975.png

 

Result of check #1 = 2 jobs meet criteria 

 

tragaller_3-1602616925734.png

 

 

1 ACCEPTED SOLUTION

@Anonymous 

 

The above formula that i wrote is a measure not a column.

 

So create a new measure and add the formula

View solution in original post

3 REPLIES 3
themistoklis
Community Champion
Community Champion

@Anonymous 

 

See a countif formula below:

 

COUNTIFS =
CALCULATE (
    COUNT( Table[ID]),
    FILTER (
        Table,
        Table[Dim1] = "Value_1"
            && Table[Dim2] = "Value_2"
			&& Table[Dim3] = "Value_3"
    )
)
Anonymous
Not applicable

@themistoklis Can this be done using a measure/calc? Still fairly new to BI and still learning.

@Anonymous 

 

The above formula that i wrote is a measure not a column.

 

So create a new measure and add the formula

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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.

Top Solution Authors