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
Pklu
Frequent Visitor

Count For Dropdown Items

I have a list table with the following intems:

 

Item 1        Color

Lolipop      Red

Cabbage   Green

Lettuce     Green

Beets        Red

Apple       Red

Peaches   Red

Olive        Black

Grapes     White

 

And I just wanted to display the sum or count for each color in the list. So my dashboard i would have something like:

# of Red = 4, # of White = 1, # of Green = 2.

 

How do I go about doing so? Any help is greatly appreciated. Is it possible?

 

Thanks,

 

PK

1 ACCEPTED SOLUTION
Pklu
Frequent Visitor

To make sure the result does not display "Blank" you can do the following: just add + 0 at the of your measures. So my finaly measure was:

 

Red_Measure = COUNTROWS(FILTER(ALLSELECTED('TableName'),[Color]="Red")) + 0
Green_Measure = COUNTROWS(FILTER(ALLSELECTED('TableName'),[Color]="Green")) + 0
White_Measure = COUNTROWS(FILTER(ALLSELECTED('TableName'),[Color]="White")) + 0
Black_Measure = COUNTROWS(FILTER(ALLSELECTED('TableName'),[Color]="Black")) + 0

View solution in original post

4 REPLIES 4
Pklu
Frequent Visitor

I think I found the solution. I used the following

 

Red_Measure = COUNTROWS(FILTER(ALLSELECTED('TableName'),[Color]="Red"))
Green_Measure = COUNTROWS(FILTER(ALLSELECTED('TableName'),[Color]="Green"))
White_Measure = COUNTROWS(FILTER(ALLSELECTED('TableName'),[Color]="White"))
Black_Measure = COUNTROWS(FILTER(ALLSELECTED('TableName'),[Color]="Black"))
 
And it worked perfectly. Thank you all for helping out.But now the question is, how do I make sure that each measure does not have blank and if they do, make it equal to 0.
 
Thanks,
Pklu
Frequent Visitor

To make sure the result does not display "Blank" you can do the following: just add + 0 at the of your measures. So my finaly measure was:

 

Red_Measure = COUNTROWS(FILTER(ALLSELECTED('TableName'),[Color]="Red")) + 0
Green_Measure = COUNTROWS(FILTER(ALLSELECTED('TableName'),[Color]="Green")) + 0
White_Measure = COUNTROWS(FILTER(ALLSELECTED('TableName'),[Color]="White")) + 0
Black_Measure = COUNTROWS(FILTER(ALLSELECTED('TableName'),[Color]="Black")) + 0
parry2k
Super User
Super User

@Pklu add a measure and then use color and the measure in the table visual:

 

Count Measure = COUNTROWS ( YourTable )

 

 



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Pklu
Frequent Visitor

Thanks for the reply. BUt how do I count the different colors - the function you sent was just to count the everything, I need to be able to count only the individual colors into a measure.

 

So I tried -

 

Count_Green = COUNTROWS ( Color = value, "Red") but it didn't work. So I am still stuck on this. But thanks for the help.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

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!

Feb2025 NL Carousel

Fabric Community Update - February 2025

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