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

The Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.

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

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

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

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Feb2025 Sticker Challenge

Join our Community Sticker Challenge 2025

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

Jan NL Carousel

Fabric Community Update - January 2025

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