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
gluizqueiroz
Resolver I
Resolver I

Except with different quantity of itens

I have the following measure:

 

Ind_Sold = 
VAR StoreSelec = DISTINCT('Aux_Store'[Store])
RETURN
IF(
    ISEMPTY(
        EXCEPT(
            StoreSelec ;
            CALCULATETABLE(VALUES(Sales[Store]); Sales[Ind_Sold] = "Never")
        )
    );
    "Never Sold";
    "Sold"
)

 I use the previous measure to "say" if some product "Sold" or "Never Sold", if the product "Sold" at least 1 store, I consider it "Sold", if the product don't sold on all stores, I consider it "Never Sold".

The measure is working so far, the problem is:

I have 3 stores, but the product only exists in 2 stores (and didn't sold on this 2 stores), then, the except is 1, then, the measure returns "Sold", but is incorrect, because it didn't sell on his 2 stores.
But the except is 1, not because of sold, because the product don't exist in the store, I need to adapt the measure to verify the product in only existing stores, is it possible?

Example of table Aux_Store:

Store
Shopping
Market
Street

 

Example of table Sale:

ProductStoreInd_Sold
F10ShoppingYes
F10MarketNever
F10StreetNever
F20ShoppingNever
F20MarketNever
F30ShoppingYes
F30MarketYes
F30StreetNever

 

My problem is with product F20, it don't sold on Shopping and Market, but the except with table Store is 1, because of quantity. 
For product F10 the return should be "Sold" and for F30 should be "Sold" too, because they sold in at least 1 store, but F20 should be "Never Sold".

1 ACCEPTED SOLUTION
v-lili6-msft
Community Support
Community Support

hi, @gluizqueiroz 

You may this simple measure to get your requirement:

Measure 3 = 
IF (
    CALCULATE ( COUNTA ( Sales[Product] ), Sales[Ind_Sold] = "Yes" ) > 0,
    "Sold",
    "Never Sold"
)

Best Regards,

Lin

 

Community Support Team _ Lin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-lili6-msft
Community Support
Community Support

hi, @gluizqueiroz 

You may this simple measure to get your requirement:

Measure 3 = 
IF (
    CALCULATE ( COUNTA ( Sales[Product] ), Sales[Ind_Sold] = "Yes" ) > 0,
    "Sold",
    "Never Sold"
)

Best Regards,

Lin

 

Community Support Team _ Lin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.