Forum Discussion
Filter multiple columns that have the same possible values and display only columns with x
- 5 years ago
Hi PowerTrouble ,
I found that the data structure of your table is similar to what I guessed. After you "Unpivot the table", filter out the rows with [Value] = "Certified". Isn't this what you want?
Best regards,
Lionel ChenIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
PowerTrouble , Create a measure like
calculate(countrows(Table), Filter(Table, Table[qualifications] ="Certified"))
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
Hey, I've updated the post with an example image if that is any help.
- v-lionel-msft5 years agoCommunity Support
Hi PowerTrouble ,
I found that the data structure of your table is similar to what I guessed. After you "Unpivot the table", filter out the rows with [Value] = "Certified". Isn't this what you want?
Best regards,
Lionel ChenIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- PowerTrouble5 years agoFrequent Visitor
This looks to be correct, thanks a lot for the help.