Forum Discussion
Negating the IN Operator
- 8 months ago
Hi aiton_grant
Try below:
Customers measure = CALCULATE( DISTINCTCOUNT('Purchase FACT'[Customer ID]), FILTER( VALUES('Purchase FACT'[Customer ID]), VAR HasBikeOrScooter = CALCULATE( COUNTROWS('Purchase FACT'), 'Product Detail'[Product Category] IN {"BIKE", "Scooter"} ) > 0 VAR HasCar = CALCULATE( COUNTROWS('Purchase FACT'), 'Product Detail'[Product Category] = "CAR" ) > 0 RETURN HasBikeOrScooter && NOT(HasCar) ) )Please give kudos or mark it as solution once confirmed.
Thanks and Regards,
Praful
- 8 months ago
Hi aiton_grant ,
I think you want to count the customers that never had bought any car. So you can write a measure as follows:
Measure = var buy_car=SUMMARIZE(FILTER(Purchase_Fact,Purchase_Fact[Product]="Car"),Purchase_Fact[CustomerID])returnCALCULATE(DISTINCTCOUNT(Purchase_Fact[CustomerID]), FILTER(Purchase_Fact,not(Purchase_Fact[CustomerID] IN buy_car) && Purchase_Fact[Product] in {"Scooter", "Bike"}))If you just have 3 products (Bike, Scooter, Car) then you also can omit the last part in the measure (&& Purchase_Fact[Product] in {"Scooter", "Bike"}))If this post helps, then I would appreciate a thumbs up 👍 and mark it as the solution ✔️ to help the other members find it more quickly.
To simplify the DAX code, take the Customer from the Sales table and for a single value you do not need IN
CALCULATE(
DISTINCTCOUNT(Sales[Customer ID]),
'Product Detail'[Product Category] <> "CAR",
'Product Info'[Product Category] IN {"BIKE", "Scooter"}
)
If this helped, please consider giving kudos and mark as a solution
me in replies or I'll lose your thread
Want to check your DAX skills? Answer my biweekly DAX challenges on the kubisco Linkedin page
Consider voting this Power BI idea
Francesco Bergamaschi
MBA, M.Eng, M.Econ, Professor of BI