Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
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!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 24 | |
| 12 | |
| 11 | |
| 9 | |
| 8 |