Forum Discussion
ss89
3 years agoHelper II
Multiple Filters AND and OR
Hello Community, I have to include another filter in the formula; I have to add 'TABLE[STAGE_NAME]="SAMPLING",'TABLE[CONDITION]="ONLINE" but The OR function in DAX accepts only two (2) argumen...
amitchandak
3 years agoSuper User
ss89 , You can try like
TABLE[STAGE_NAME]="SAMPLING" || 'TABLE[CONDITION]="ONLINE"
or
TABLE[STAGE_NAME] in {"SAMPLING", "ONLINE" }
ss89
3 years agoHelper II
Hi amitchandak ,
thanks for your prompt reply.
I have to include at the sime time the three filters (STAGE NAME with his corresponding CONDITION).
| STAGE NAME | CONDITION |
| SAMPLING | ONLINE |
| SAMPLING | APPROVED |
| RELEASE | ONLINE |
- amitchandak3 years agoSuper User
ss89 , please share the expected output
- ss893 years agoHelper II