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
ariaz
Regular Visitor

Calculated column

Hi everyone. Need help in analyzing a survey questionnaire in Power BI. I am trying to equally distribute "Netural" responses to "Agree" and "Disagree" and cannot figure it out. Can someone please suggest a solution to this. I have columns Employee ID, Country, Question and Answer in my survey. Your early response and help will never go unappreciated. Thanks

1 ACCEPTED SOLUTION
ariaz
Regular Visitor

Hi @Kishore_KVN ,
I recreated the logic to get the desired result, using your provided DAX:

AgreeColumn =
IF(Datasource[Answer]="Agree",1,IF(Datasource[Answer]="Neutral",0.5,BLANK()))
Disagreecolumn = IF(Datasource[Answer]="Disagree",1,if(Datasource[Answer]="Neutral",0.5,BLANK()))
Above two columns worked out for me.

Appreciate your help and I am closing this as "Solved" 😊

View solution in original post

3 REPLIES 3
ariaz
Regular Visitor

Hi @Kishore_KVN ,
I recreated the logic to get the desired result, using your provided DAX:

AgreeColumn =
IF(Datasource[Answer]="Agree",1,IF(Datasource[Answer]="Neutral",0.5,BLANK()))
Disagreecolumn = IF(Datasource[Answer]="Disagree",1,if(Datasource[Answer]="Neutral",0.5,BLANK()))
Above two columns worked out for me.

Appreciate your help and I am closing this as "Solved" 😊
ariaz
Regular Visitor

Hi Kishore. Let me try the solution that you provided and will mark it as "Accept as solution" if it works. Appreciate your help

Kishore_KVN
Solution Sage
Solution Sage

Hello @ariaz , create two columns 

1. Agree Column and its DAX will be 

Agree Column = If(Response = "Agree"||Response = "Neutral",1, Blank())

2. Disagree Column and its DAX is also the same by changing to disagree. It looks as below:

Disagree Column = If(Response = "Disagree"||Response = "Neutral",1, Blank())

 

Then in your visualization, you can use the sum to get the total values of Agree and Disagree.

 

If this post helps, then please consider accepting it as the solution to help other members find it more quickly. Thank You!!

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.