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

Get Fabric Certified for FREE during AI Skills Fest. This week only. Secure your voucher now.

Reply
mohammedkhan
Helper I
Helper I

Display the last price of each product (earch Product Last Price is different)

Dear All,

 

I would like to display the recent dollar price from the table for each country there are 240 countriesRDP.PNG

I have added a column with mention below DAX 

 

RDP = CALCULATE(TOPN(1,'Dollar Data','Dollar Data'[dollar_price],DESC,'Dollar Data'[Date].[Date],DESC))
1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

@mohammedkhan 

 

Give this a shot

 

RDP =
MINX (
    TOPN (
        1,
        FILTER (
            'Dollar Data',
            'Dollar Data'[Country_Code] = EARLIER ( 'Dollar Data'[Country_Code] )
        ),
        'Dollar Data'[Date], DESC
    ),
    'Dollar Data'[dollar_price]
)

View solution in original post

2 REPLIES 2
Zubair_Muhammad
Community Champion
Community Champion

@mohammedkhan 

 

Give this a shot

 

RDP =
MINX (
    TOPN (
        1,
        FILTER (
            'Dollar Data',
            'Dollar Data'[Country_Code] = EARLIER ( 'Dollar Data'[Country_Code] )
        ),
        'Dollar Data'[Date], DESC
    ),
    'Dollar Data'[dollar_price]
)

Thank you Zubair,
This is indeed a great help, there will be more queries may i post them onto the forum.

Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.