Counting the text values

+2 votes

I have data like below

ProductID OrderID Flag Value
111 1 Yes 10
111 2 No 10
112 1 No 20
112 2 Yes 20

I need to count only "Yes". 

I tried with count distinct but for order 112 it is counting only "No". 

I need to count "Yes" even if 1st row entry in data is "No"

Aug 26, 2019 in Power BI by anonymous
829 views

2 answers to this question.

+2 votes

Hi!

Create a column using contains( ) like below.

Count = IF(CONTAINS('table','table'[Flag],"Yes"),1,0)

answered Aug 29, 2019 by anonymous
• 33,050 points
+2 votes
To get the count of only yes, use this Dax.

Yes_count = IF('29Aug'[Flag]=="Yes",1,0)
answered Aug 29, 2019 by anonymous
• 33,050 points

Related Questions In Power BI

0 votes
1 answer

To expand all lists in a row of lists at the same time without recurring values

Can't promise simple, but I have something ...READ MORE

answered Feb 19, 2019 in Power BI by Upasana
• 8,620 points
6,503 views
+1 vote
2 answers

How can I count the distinct values in a column using Power BI?

In Power BI, use the DISTINCTCOUNT DAX ...READ MORE

answered Nov 26, 2024 in Power BI by Anu
• 3,020 points
476 views
0 votes
1 answer
0 votes
1 answer

Is there a way in Power BI Desktop to transform multiple text column values into a single row, grouped by another column?

Yes, you can transform multiple text values ...READ MORE

answered Mar 3 in Power BI by anonymous
• 24,110 points
56 views
0 votes
1 answer

Filling Missing Values with the Previous Available Value in Power Query

This guide for filling missing values with ...READ MORE

answered Mar 5 in Power BI by anonymous
• 24,110 points
69 views
0 votes
1 answer

How can I create a dynamic grouping in Power Query where the group sizes vary based on another column’s values?

You can use these innovative techniques in ...READ MORE

answered Mar 17 in Power BI by anonymous
• 24,110 points
87 views
0 votes
1 answer

How can I create a multi-row card that dynamically adjusts based on the number of selected values?

To create a multi-row card in Power ...READ MORE

answered Mar 18 in Power BI by anonymous
• 24,110 points
67 views
0 votes
1 answer

Profile all the data tables

you can automatically get a profile for ...READ MORE

answered Sep 20, 2018 in Power BI by Kalgi
• 52,350 points
858 views
0 votes
1 answer

Calculated column with the sum of values from many columns in a row

Hi, You can create a new column by ...READ MORE

answered Mar 14, 2019 in Power BI by Cherukuri
• 33,050 points
2,829 views
+2 votes
2 answers

Count text values from different columns

You can try duplicating the category columns ...READ MORE

answered Aug 29, 2019 in Power BI by anonymous
• 33,050 points
1,580 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP