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
thebaguette
New Member

Get dimension value based on minimum metric value

Hi,

 

I have the following table :

 

EANStorePriceDate
AAAAAAmazon10001/01/2022
AAAAAEbay12001/01/2022
AAAAAAmazon11008/01/2022
AAAAAEbay13008/01/2022
AAAAAAli10508/01/2022
CCCCCAmazon1001/01/2022
CCCCCEbay1201/01/2022
CCCCCAmazon1008/01/2022
CCCCCAli1108/01/2022

 

EAN is the reference of a product selled by Amazon, Ali... I have the product price updated every week. I need to know, for a disctinct product, what is the store selling the product at the cheapest price.

 For example, if the date filter is all January, the results should be:

 

EANCheapest_store
AAAAAAli
CCCCCAmazon

As you can see, only the last updated date should be taken into account (if there is data).

 

I would like also to be able to count the number of time each store has been the cheapest one (based on last date as well):

StoreCount_cheapest
Ali1
Amazon1
Ebay0

 

I tried the following dax formula but it does not give the expected results:

'''

var maxDate = CALCULATE(MAX(full_pricing_stores[date]))
var min_Price = [min_price_concurrents]


RETURN
CALCULATE (
COUNTROWS (full_pricing_stores),
FILTER( full_pricing_stores, full_pricing_stores[date] = maxDate && full_pricing_stores[price] = min_Price),
ALLEXCEPT(full_pricing_stores, full_pricing_stores[store] )
)​

 '''

Any helpd & advice would be greatly appreciated 🙂

 

Thank you

2 REPLIES 2
amitchandak
Super User
Super User

@thebaguette , Try a measure like

Rankx(Filter(allselected(Table[EAN], Table[Month Year], Table[Store]), [EAN] = Max([EAN]) && [Month Year] = max([Month Year])), calculate(Min(Table[Price])),,asc,dense)

 

you can use visual level filter of 1

 

For Rank Refer these links
https://radacad.com/how-to-use-rankx-in-dax-part-2-of-3-calculated-measures

Hi @amitchandak,

 

Thank you for your answer. Unfortunately it didn't work. I did some calculation before connecting the table to PBI to make it work 🙂

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.

Top Solution Authors