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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
vanessafvg
Super User
Super User

calculated column = count values? (sum if)

i need to  created a calcualted column that counts the columns where the value is yes

 

ie

 

column1   column2  column3   column4   calculatedcolumn

yes                            yes            yes             3

 

 

what would be the best way to create this?





If I took the time to answer your question and I came up with a solution, please mark my post as a solution and /or give kudos freely for the effort 🙂 Thank you!

Proud to be a Super User!




1 ACCEPTED SOLUTION

Hi @vanessafvg,

 

The solution provided by @AndrejZitnay is on the Query editor however if you want to do it in DAX you should use the following formula:

 

Count of Yes = IF(Table2[1] = "yes";1;0) + IF(Table2[2] = "yes";1;0) + IF(Table2[3] = "yes";1;0) + IF(Table2[4] = "yes";1;0)

Some principal different syntax.

 

Regards,

MFelix


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



View solution in original post

6 REPLIES 6
AndrejZitnay
Post Patron
Post Patron

Hello @vanessafvg

 

I would maybe to some measurment but if you want that in colum than :

 

step 1

add 4 conditional columns and if operator equal yes than 1 otherwise 0

 

step 2

add all 4 conditional columns together.

sample.png

 

@AndrejZitnay hi that is actually a good idea but a calculate column seems less complex if i can get the logic right





If I took the time to answer your question and I came up with a solution, please mark my post as a solution and /or give kudos freely for the effort 🙂 Thank you!

Proud to be a Super User!




Hi @vanessafvg,

 

The solution provided by @AndrejZitnay is on the Query editor however if you want to do it in DAX you should use the following formula:

 

Count of Yes = IF(Table2[1] = "yes";1;0) + IF(Table2[2] = "yes";1;0) + IF(Table2[3] = "yes";1;0) + IF(Table2[4] = "yes";1;0)

Some principal different syntax.

 

Regards,

MFelix


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



@MFelix yep go it thanks





If I took the time to answer your question and I came up with a solution, please mark my post as a solution and /or give kudos freely for the effort 🙂 Thank you!

Proud to be a Super User!




Hi @vanessafvg and @AndrejZitnay,

 

Although the option from @AndrejZitnay is correct you can make it just with one column:

(if [1] = "Yes" then 1 else 0) +
(if [2] = "Yes" then 1 else 0) +
(if [3] = "Yes" then 1 else 0) +
(if [4] = "Yes" then 1 else 0)

Regards,

MFelix

 

 


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



AndrejZitnay
Post Patron
Post Patron

Hello @vanessafvg

 

I would maybe to some measurment but if you want that in colum than :

 

step 1

add 4 conditional columns and if operator equal yes than 1 otherwise 0

 

step 2

add all 4 conditional columns together.

sample.png

 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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