Forum Discussion
Anonymous
5 years agoNot applicable
Multiples Filters DAX
Hi people.
Can anybody help me? Starting from the example below, which formula I could use to obtain the following result: I want to filter the opportunities that have the Status "Lost", that have the score "3" and "4", Blacklist "Não" and "Cell blank".
Thanks
Karina
- Anonymous5 years ago
2 Replies
- amitchandakSuper User
Anonymous , Create a measure like this and plot that with ID in the visual
calculate(count(Table[ID]), filter(Table, Table[Score] in {3,4} && ( Table[Blacklist] = "Não" || isblank(Table[Blacklist] ))))- AnonymousNot applicable