Forum Discussion
martim0305
1 year agoFrequent Visitor
Need Help with Searching for One Value and Filtering by Another in Power BI
Hey everyone, I’m facing a challenge in Power BI and hoping someone can help me out. I have a dataset like this: Student Class John B Mary B Martin B Louis A Thomas A Andrew A My goal ...
- 1 year ago
you need to duplicated the table. One is for filtering and the other is for displaying.
then you create a measure
Measure =VAR _class=max('Table'[Class])return if (_class=max('Table 2'[Class]),1)add this measure to visual filter and set to 1pls see the attachment below
ryan_mayu
1 year agoSuper User
you need to duplicated the table. One is for filtering and the other is for displaying.
then you create a measure
Measure =
VAR _class=max('Table'[Class])
return if (_class=max('Table 2'[Class]),1)
add this measure to visual filter and set to 1
pls see the attachment below
martim0305
1 year agoFrequent Visitor
It worked. Really thankful for your help!
- ryan_mayu1 year agoSuper User
you are welcome