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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
NewbieJono
Post Patron
Post Patron

Max date

hello, how would i bring back the max date in a table then show the fiscal year from that date from the date table.

 

The relationship is set.

 

The max date in the table is 01/04/2024. i would like to display it as 2024-25

1 ACCEPTED SOLUTION
_AAndrade
Super User
Super User

Hi @NewbieJono,

Here is my solution:

On my data set my max calendar date is 31/12/2028.

VAR _MaxDate = CALCULATE( MAX (d_Calendar[Date]), ALL(d_Calendar))
VAR _Result = 
    YEAR(_MaxDate) & "-" & RIGHT( YEAR(_MaxDate) + 1, 2)
RETURN
    _Result

_AAndrade_0-1715937429295.png

 





Did I answer your question? Mark my post as a solution! Kudos are welcome.

Proud to be a Super User!




View solution in original post

1 REPLY 1
_AAndrade
Super User
Super User

Hi @NewbieJono,

Here is my solution:

On my data set my max calendar date is 31/12/2028.

VAR _MaxDate = CALCULATE( MAX (d_Calendar[Date]), ALL(d_Calendar))
VAR _Result = 
    YEAR(_MaxDate) & "-" & RIGHT( YEAR(_MaxDate) + 1, 2)
RETURN
    _Result

_AAndrade_0-1715937429295.png

 





Did I answer your question? Mark my post as a solution! Kudos are welcome.

Proud to be a Super User!




Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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