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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
Akaki
New Member

Count text value items in row

Good day everyone

 

I have a table in Power BI imported, the number of columns is about 400, and the rows are around 190. I need to calculate text value items for each row separately. for example how many "Yes" records are in each row, or Ho many "No information" available records.

 

Below is the table I am working on: 

 

Test Table.PNG

 

Please guide me if there is a way to calculate count using DAX

 

Thank you!

 

1 ACCEPTED SOLUTION
Vijay_A_Verma
Most Valuable Professional
Most Valuable Professional

You would need to do this in Power Query.

Insert a custom column and use following formula to calculate no. of Yes

= List.Count(List.Select(Record.ToList(_),each _="Yes"))

For no. of No information

replace Yes with No information in above formula.

View solution in original post

4 REPLIES 4
Vijay_A_Verma
Most Valuable Professional
Most Valuable Professional

You would need to do this in Power Query.

Insert a custom column and use following formula to calculate no. of Yes

= List.Count(List.Select(Record.ToList(_),each _="Yes"))

For no. of No information

replace Yes with No information in above formula.

Thanks so much for your quick replay, worked very well!

Greg_Deckler
Community Champion
Community Champion

@Akaki This would be much easier if you unpivoted your Question columns. Otherwise, you are going to need DAX that checks all 400 columns. If you unpivoted, you could simply use something like CALCULATE(COUNTROWS('Table'),[Value] = "yes")



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Thanks for the reply, good option as well to solve the issue!

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.