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!Get Fabric certified for FREE! Don't miss your chance! Learn more
I have the following data:
| Name of the project | Reason 1 | Reason 2 | Reason 3 | Reason 4 | Reason 5 | Reason 6 | Reason 7 |
| Amino | Yes | No | Yes | Yes | No | Yes | No |
| Amino | No | Yes | No | Yes | Yes | No | Yes |
| Bash | Yes | No | Yes | No | No | Yes | No |
| Trash | Yes | No | No | Yes | Yes | No | Yes |
How do I effectively and efficiently visualise the above table especially when I want to Identify the number of Yes and Nos for each reason per project?
Hi @Novice_ ,
Has your problem been solved, if so, please consider Accept a correct reply as the solution to help others find it.
Best Regards
Lucien
Hi @Novice_ ,
Final showing like below:
Use the following dax to create new column:
Count_Yes =
VAR test1 =
IF ( 'Table'[Reason 1] = "Yes", 1, 0 )
VAR test2 =
IF ( 'Table'[Reason 2] = "Yes", 1, 0 )
VAR test3 =
IF ( 'Table'[Reason 3] = "Yes", 1, 0 )
VAR test4 =
IF ( 'Table'[Reason 4] = "Yes", 1, 0 )
VAR test5 =
IF ( 'Table'[Reason 5] = "Yes", 1, 0 )
VAR test6 =
IF ( 'Table'[Reason 6] = "Yes", 1, 0 )
VAR test7 =
IF ( 'Table'[Reason 7] = "Yes", 1, 0 )
RETURN
test1 + test2 + test3 + test4 + test5 + + test6 + test7Count_No =
VAR test1 =
IF ( 'Table'[Reason 1] = "No", 1, 0 )
VAR test2 =
IF ( 'Table'[Reason 2] = "No", 1, 0 )
VAR test3 =
IF ( 'Table'[Reason 3] = "No", 1, 0 )
VAR test4 =
IF ( 'Table'[Reason 4] = "No", 1, 0 )
VAR test5 =
IF ( 'Table'[Reason 5] = "No", 1, 0 )
VAR test6 =
IF ( 'Table'[Reason 6] = "No", 1, 0 )
VAR test7 =
IF ( 'Table'[Reason 7] = "No", 1, 0 )
RETURN
test1 + test2 + test3 + test4 + test5 + + test6 + test7Count_No =
VAR test1 =
IF ( 'Table'[Reason 1] = "No", 1, 0 )
VAR test2 =
IF ( 'Table'[Reason 2] = "No", 1, 0 )
VAR test3 =
IF ( 'Table'[Reason 3] = "No", 1, 0 )
VAR test4 =
IF ( 'Table'[Reason 4] = "No", 1, 0 )
VAR test5 =
IF ( 'Table'[Reason 5] = "No", 1, 0 )
VAR test6 =
IF ( 'Table'[Reason 6] = "No", 1, 0 )
VAR test7 =
IF ( 'Table'[Reason 7] = "No", 1, 0 )
RETURN
test1 + test2 + test3 + test4 + test5 + + test6 + test7Reason_No =
VAR test1 =
IF ( 'Table'[Reason 1] = "No", "Reason 1", BLANK() )
VAR test2 =
IF ( 'Table'[Reason 2] = "No", "Reason 2", BLANK() )
VAR test3 =
IF ( 'Table'[Reason 3] = "No", "Reason 3", BLANK() )
VAR test4 =
IF ( 'Table'[Reason 4] = "No","Reason 4", BLANK() )
VAR test5 =
IF ( 'Table'[Reason 5] = "No", "Reason 5", BLANK() )
VAR test6 =
IF ( 'Table'[Reason 6] = "No", "Reason 6", BLANK())
VAR test7 =
IF ( 'Table'[Reason 7] = "No", "Reason 7", BLANK())
RETURN
test1&" "&test2&" "&test3&" "&test4&" "&test5&" "&test6&" "&test7
You could download my pbix flie if you need.
Wish it is helpful for you!
Best Regards
Lucien
@Novice_ , My advice would be unpivoting all the reason columns
https://radacad.com/pivot-and-unpivot-with-power-bi
Transpose : https://yodalearning.com/tutorials/power-query-helps-transposing-data/
Then reason would also be a column. ANd you can use matrix for similar display with max of value
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 68 | |
| 59 | |
| 44 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 104 | |
| 102 | |
| 37 | |
| 26 | |
| 26 |