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
jaco1951
Helper III
Helper III

Find last date that exist in my list by each month

Dear all

 

I have a list of currency rates, and I need to pull the last date of currency rates from each month, so EndOfMonth is not working in this case.

 

I have tried with this forumla, but it doesn't seem to give any results:

 

endOfMonth_1 =
CALCULATE(

MAX(CurrencyRates[Date_Currency]);

ALLSELECTED(currencyRates[YearMonth])

)

 

Does anyone have ideas on how to pick this date and to show the Currency_Value based on this selection?

 

Kind regards

Espen

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

Hi @jaco1951

 

Please see attached file here

 

Hope it helps

 

This is the Measure I used

 

EndOfMonth_rate =
VAR Last_Date =
    ENDOFMONTH ( VALUES ( CurrencyRates[Date] ) )
RETURN
    CALCULATE (
        SELECTEDVALUE ( CurrencyRates[Rate] ),
        CurrencyRates[Date] = Last_Date
    )

Regards
Zubair

Please try my custom visuals

View solution in original post

2 REPLIES 2
Zubair_Muhammad
Community Champion
Community Champion

Hi @jaco1951

 

Please see attached file here

 

Hope it helps

 

This is the Measure I used

 

EndOfMonth_rate =
VAR Last_Date =
    ENDOFMONTH ( VALUES ( CurrencyRates[Date] ) )
RETURN
    CALCULATE (
        SELECTEDVALUE ( CurrencyRates[Rate] ),
        CurrencyRates[Date] = Last_Date
    )

Regards
Zubair

Please try my custom visuals

Thank you very much!

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.