Forum Discussion
planning
6 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 ...
Greg_Deckler
Community Champion
6 years agoplanning I don't believe you can combine them like that, you will need a measure like:
Measure = IF([User]="Carlos" && [Type of Document] = "B",1,0)
Filter out the 1's.
planning
6 years agoFrequent Visitor
Thanks! The thing is that I can“t choose neither the User nor the Type of Doc columns in the measure. Is there a workaround for this?