Forum Discussion
planning
5 years agoFrequent Visitor
Two-Condition Filter
Hi, I have a talbe like below: User Type of Document USD Carlos A 10 Carlos B 20 Roberto A ...
amitchandak
5 years agoSuper User
planning , You can have measure like
calculate(sum(Table[USD]), filter(Table, Table[User] = "Carlos" && Table[Type of Document] ="B"))
planning
5 years agoFrequent Visitor
Thanks! The only thing is that in this way I'm including that information when I want to exclude it. How can I filter it out instead of in?