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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

how to filter a measure using allexcept in category

Hi, i am new with power BI and i am wondering how to create a measure using a filter on another measure, but using allexcept. The goal is for example to have all the sports sales except for hockey and basket, 

Thank you

1 ACCEPTED SOLUTION
jdbuchanan71
Super User
Super User

Whoops, had my NOT in the wrong spot.

Sales excl 2 = CALCULATE ( SUM ( 'table'[Sales Amount] ), NOT 'table'[Sport] IN {"hockey","basketball"} )

View solution in original post

6 REPLIES 6
jdbuchanan71
Super User
Super User

Whoops, had my NOT in the wrong spot.

Sales excl 2 = CALCULATE ( SUM ( 'table'[Sales Amount] ), NOT 'table'[Sport] IN {"hockey","basketball"} )
Anonymous
Not applicable

It works, thanks a lot!

jdbuchanan71
Super User
Super User

No, that would be this.

Sales 2 = CALCULATE ( SUM ( 'table'[Sales Amount] ), 'table'[Sport] IN {"hockey","basketball"} )
jdbuchanan71
Super User
Super User

That is not really what ALLEXCEPT is for.  To do what you are describing would be along these lines.

Sales excl 2 = CALCULATE ( SUM ( 'table'[Sales Amount] ), 'table'[Sport] NOT IN {"hockey","basketball"} )
Anonymous
Not applicable

When i write, it highlights the word NOT in red saying it's an unexpected expression?

Anonymous
Not applicable

ok, and i guess if i want to create the same type of mesure except this time by filtering the sales for hockey AND basket, i just have to write :

CALCULATE ( SUM ( 'table'[Sales Amount] ), 'table'[Sport] IN {"hockey"}, 'table'[Sport] IN {"basketball"} )

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.