Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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
Solved! Go to Solution.
Hi Kishore. Let me try the solution that you provided and will mark it as "Accept as solution" if it works. Appreciate your help
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!!
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.