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
MD12
Regular Visitor

Want to create a measure which count the specific values from a column.

FB735103-182F-443E-BF4B-EE527758BC0A.jpeg

 Want to create a mesure which counts the triagelevel 4 and 5 only.

1 ACCEPTED SOLUTION
TotunG
Resolver I
Resolver I

Hey, I guess by COUNT you mean just COUNT the occurrence. Try this measure and mark as a solution if it works:

Replace 'Table' with your Table name and [Number] with [TriageLevel]

COUNTIF = CALCULATE(COUNT('Table'[Number]),'Table'[Number]=4 || 5)

View solution in original post

3 REPLIES 3
TotunG
Resolver I
Resolver I

Hey, I guess by COUNT you mean just COUNT the occurrence. Try this measure and mark as a solution if it works:

Replace 'Table' with your Table name and [Number] with [TriageLevel]

COUNTIF = CALCULATE(COUNT('Table'[Number]),'Table'[Number]=4 || 5)
MD12
Regular Visitor

Triage level is a text column not a whole number.

Still should work?

Helpful resources

Announcements
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!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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