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 t...
- Anonymous5 years ago
amitchandak
5 years agoSuper 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] ))))
Anonymous
5 years agoNot applicable