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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Anonymous
Not applicable

Opposite of IN in dax

Hello Team,

 

I am need a dax formula to calculate a distinct count of sell_to_customer_name where sell_to_customer_no does not contain "99997","99998" and "99997". My table name is sales_main.

 

I am trying the below formula but it is not working:

 

Calculate([Sell_name_dist], Sales_main[Sell_to_Customer_No] <> {"99999","99998","99997"})
 
Sell_name_dist =
DISTINCTCOUNT(Sales_main[Sell_to_Customer_Name])
 
Any idea on how I can get it to work?
 
Many Thanks.
 
Kind Regards,
 
Hasvine
1 ACCEPTED SOLUTION
DOLEARY85
Super User
Super User

Hi,

 

try this

 

NOT IN =
CALCULATE (
    DISTINCTCOUNT ( 'Sales_main'[Sell_name_dist] ),
    FILTER (
        'Table',
         NOT ( 'Sales_main'[Sell_to_Customer_No]) IN { "99999","99998","99997" }
    )
)
 
If I answered your question, please mark my post as solution, Appreciate your Kudos 👍

 

View solution in original post

1 REPLY 1
DOLEARY85
Super User
Super User

Hi,

 

try this

 

NOT IN =
CALCULATE (
    DISTINCTCOUNT ( 'Sales_main'[Sell_name_dist] ),
    FILTER (
        'Table',
         NOT ( 'Sales_main'[Sell_to_Customer_No]) IN { "99999","99998","99997" }
    )
)
 
If I answered your question, please mark my post as solution, Appreciate your Kudos 👍

 

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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

Top Solution Authors