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" 🙂
Gabriel_Walkman
5 years agoContinued Contributor
Maybe this would work:
CALCULATE(
COUNT( 'All Applicants'[value.Region] ),
'All Applicants'[value.Region] = "New"
)
- LyonsBI_BRL5 years agoHelper III
Gabriel_Walkman thanks for the feedback!
I just tried that, though no go, it didn't like me including that.