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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I have a table like:
person_id | question_code | answer | yes/no |
123 | 1q | yes | yes |
123 | 2q | no | yes |
123 | 3q | no | yes |
123 | 4q | no | yes |
123 | 5q | no | yes |
123 | 6q | no | yes |
So, each person is asked 6 questions, and if at least one answer out of 6 is "yes", then new column (yes/no) should show all "yes" per this person. If all answers are "no", then new column(yes/no) should show all "no" per this person.
How to create this column on dax?
Solved! Go to Solution.
Hi @Anonymous
Please use
=
VAR CurrentIDTable =
CALCULATETABLE ( TableName, ALLEXCEPT ( TableName, TableName[person_id] ) )
VAR Answered =
SELECTCOLUMNS ( CurrentIDTable, "@Answered", TableName[Answer] )
RETURN
IF ( "Yes" IN Answered, "Yes", "No" )
Hi @Anonymous
Please use
=
VAR CurrentIDTable =
CALCULATETABLE ( TableName, ALLEXCEPT ( TableName, TableName[person_id] ) )
VAR Answered =
SELECTCOLUMNS ( CurrentIDTable, "@Answered", TableName[Answer] )
RETURN
IF ( "Yes" IN Answered, "Yes", "No" )
Yes, right one, thanks a lot!
User | Count |
---|---|
15 | |
11 | |
6 | |
6 | |
5 |
User | Count |
---|---|
29 | |
17 | |
11 | |
7 | |
5 |