Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during AI Skills Fest. This week only. Secure your voucher now.

Reply
adavid999
Helper V
Helper V

dax filtering

Hello, please can someone explain why these two measures produce different results (something to do with the AND/OR but I don't understand why these would differ)? (I am reposting this as I made an error in my original post)

 

measure 1 check (no.) =
CALCULATE (
    COUNT ( fct_core[colour] ),
    fct_core[type] = 1
        || fct_core[type] = 2
        || fct_core[type] = 3
        && fct_core[colour] = 5
        || fct_core[colour] = 6
        || fct_core[colour] = 7
        || fct_core[colour] = 8
)

 

and:

 

measure 2 check (no.) =
CALCULATE (
    COUNT ( fct_core[colour] ),
    fct_core[type] >= 1
        && fct_core[type] <= 3
        && fct_core[colour] = 5
        || fct_core[colour] = 6
        || fct_core[colour] = 7
        || fct_core[colour] = 8
)

 

thanks,

A

1 ACCEPTED SOLUTION
AlexisOlson
Super User
Super User

Suppose you have type 2 and color 4. Then measure 1 would count it but not measure 2.

 

Note that your logical combination

T1 || T2 || T3 && C5 || C6 || C7 || C8

is equivalent to

T1 || T2 || (T3 && C5) || C6 || C7 || C8

not as I think you intended

(T1 || T2 || T3) && (C5 || C6 || C7 || C8)

 

I'd rewrite the measure as

 

check (no.) =
CALCULATE (
    COUNT ( fct_core[colour] ),
    fct_core[type] IN { 1, 2, 3 },
    fct_core[colour] IN { 5, 6, 7, 8 }
)

 

View solution in original post

2 REPLIES 2
AlexisOlson
Super User
Super User

Suppose you have type 2 and color 4. Then measure 1 would count it but not measure 2.

 

Note that your logical combination

T1 || T2 || T3 && C5 || C6 || C7 || C8

is equivalent to

T1 || T2 || (T3 && C5) || C6 || C7 || C8

not as I think you intended

(T1 || T2 || T3) && (C5 || C6 || C7 || C8)

 

I'd rewrite the measure as

 

check (no.) =
CALCULATE (
    COUNT ( fct_core[colour] ),
    fct_core[type] IN { 1, 2, 3 },
    fct_core[colour] IN { 5, 6, 7, 8 }
)

 

That is really helpful, thanks Alexis and for stackoverflow too!

Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.