Forum Discussion
tkrupka
Resolver II
7 years agoDAX If And Filter
I am trying to figure out how to do this. Basically I am trying to write a DAX equation that will allow me to create a measure with multiple filters. I want to get the Tanks[Tank_Name] ...
- 7 years ago
Finally figured out what I wanted. I'm not sure why I was having such an issue.
Day_Tank_1 = CALCULATE(VALUES(Tanks[Tank_Name]),FILTER(Tanks,Tanks[Day_Tank]=TRUE()),FILTER(Tanks,Tanks[INDEX]=1))
tkrupka
Resolver II
7 years agoparry2kBut I also need to filter based on the Day Tank value because some visuals will be based on TRUE and others will be based on FALSE on the same dashboard.