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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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"))

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"))

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"))

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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