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 ...
Greg_Deckler
5 years agoCommunity Champion
planning 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
5 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?