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! Learn more

Reply
ngiam
Helper I
Helper I

How to perform COUNTIF on Measurement?

Hi,

 

How do I perform a countif using measurement?

 

I have a measurement created to categorize Strength, Weakness, Average.

 

Strength =
SWITCH( TRUE,
(((Sheet[Superior Score]+Sheet[Team Member Score])/2)>3.00), "Strength",
(((Sheet[Superior Score]+Sheet[Team Member Score])/2)<2.20), "Weakness",
((Sheet[Superior Score]+Sheet[Team Member Score])/2)<2.01, "Weakness",
"Average"
)
 
After that i would like to COUNT the number of strength, weakness and average. Can't seems to link anything to the earlier mentioned measurement.
 
Is there a way to do this?
 
Btw, how to post the pbix file? can't seems to find the right place to upload
1 ACCEPTED SOLUTION

@ngiam , sorry my mistake

Strength =

countrows(filter(Sheet,Sheet[Strength] = "Strength"))

 

Weakness=

countrows(filter(Sheet,Sheet[Strength] = "Weakness"))

 

Average=

countrows(filter(Sheet,Sheet[Strength] = "Average"))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

4 REPLIES 4
ngiam
Helper I
Helper I

Hi @amitchandak ,

 

Thank you for your reply.

I encoutered the following issue :

 

Too few arguments were passed to the FILTER function. The minimum argument count for the function is 2.

 

Just manage to upload my file here : 

https://drive.google.com/drive/folders/12F-Kgb_vvUm13qEdCqOAA_8MJT2IQg2O?usp=sharing

@ngiam , sorry my mistake

Strength =

countrows(filter(Sheet,Sheet[Strength] = "Strength"))

 

Weakness=

countrows(filter(Sheet,Sheet[Strength] = "Weakness"))

 

Average=

countrows(filter(Sheet,Sheet[Strength] = "Average"))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Thank you! This works!

amitchandak
Super User
Super User

@ngiam , if above is a calculated column, then you can create measure like

Strength =

countrows(filter(Sheet[Strength] = "Strength"))

 

Weakness=

countrows(filter(Sheet[Strength] = "Weakness"))

 

Average=

countrows(filter(Sheet[Strength] = "Average"))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

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