Forum Discussion
LyonsBI_BRL
5 years agoHelper III
DAX Row Filter on Status
Recently I was able to create a map, being able to show data label values for each region by using the instructions from the following YouTube video - https://www.youtube.com/watch?v=4ZOanVP1PS0 ...
- 5 years ago
Or just pull [value.Status] as a visual filter and select "New" 🙂
v-janeyg-msft
5 years agoCommunity Support
Hi, LyonsBI_BRL
According to your description, If i understand what you mean, I think you can create a measure,then put it in filter pane to filter the data in visual.
Like this:
measure =
IF ( SELECTEDVALUE('All Applicants'[value.Status]) = "New", 1, 0 )
If it doesn't solve the problem, Please feel free to ask me.
Best Regards
Janey Guo
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Gabriel_Walkman5 years agoContinued Contributor
Or just pull [value.Status] as a visual filter and select "New" 🙂