Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
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!!
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 4 | |
| 4 | |
| 3 | |
| 2 | |
| 1 |
| User | Count |
|---|---|
| 11 | |
| 11 | |
| 5 | |
| 4 | |
| 4 |