Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Solved! Go to Solution.
Just like what @musicbydannyd suggested, OR can only add two conditions,e.g OR(OR(condition1,condition2),condition3.
However || can add more than 2 conditions, e.g. condition1 || condition2 || condition3 ||....||condition N.
Proud to be a Super User!
@pramita , try like
DI JR = DIVIDE(CALCULATE(
COUNTROWS('INPUT'),filter('INPUT',
'INPUT'[Level] = "JR",
OR(
OR(
OR(
OUTPUT[Q1] < 4,
OUTPUT[Q5] < 4
),
OR(
OUTPUT[Q7] < 4,
OUTPUT[Q8] < 4
)
),
OUTPUT[Q11] < 4)
)),
DISTINCTCOUNT(OUTPUT[Email Address]))
Hi @pramita
Try below:
DI JR =
DIVIDE (
CALCULATE (
COUNTROWS ( INPUT ),
VALUES ( 'INPUT'[Level] ) = "JR",
FILTER (
OUTPUT,
OR (
OR (
OR ( OUTPUT[Q1] < 4, OUTPUT[Q5] < 4 ),
OR ( OUTPUT[Q7] < 4, OUTPUT[Q8] < 4 )
),
OUTPUT[Q11] < 4
)
)
),
DISTINCTCOUNT ( OUTPUT[Email Address] )
)
Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @pramita
Try below:
DI JR =
DIVIDE (
CALCULATE (
COUNTROWS ( INPUT ),
VALUES ( 'INPUT'[Level] ) = "JR",
FILTER (
OUTPUT,
OR (
OR (
OR ( OUTPUT[Q1] < 4, OUTPUT[Q5] < 4 ),
OR ( OUTPUT[Q7] < 4, OUTPUT[Q8] < 4 )
),
OUTPUT[Q11] < 4
)
)
),
DISTINCTCOUNT ( OUTPUT[Email Address] )
)
Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@pramita , try like
DI JR = DIVIDE(CALCULATE(
COUNTROWS('INPUT'),filter('INPUT',
'INPUT'[Level] = "JR",
OR(
OR(
OR(
OUTPUT[Q1] < 4,
OUTPUT[Q5] < 4
),
OR(
OUTPUT[Q7] < 4,
OUTPUT[Q8] < 4
)
),
OUTPUT[Q11] < 4)
)),
DISTINCTCOUNT(OUTPUT[Email Address]))
Just like what @musicbydannyd suggested, OR can only add two conditions,e.g OR(OR(condition1,condition2),condition3.
However || can add more than 2 conditions, e.g. condition1 || condition2 || condition3 ||....||condition N.
Proud to be a Super User!
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 53 | |
| 42 | |
| 20 | |
| 16 |
| User | Count |
|---|---|
| 123 | |
| 106 | |
| 44 | |
| 32 | |
| 24 |