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

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more

Reply
Yazid
Helper I
Helper I

Find max date for each year

Dear,

 

I would like to have a DAX code able to return me the Max date for each year. Example as below:

Yazid_0-1718122634212.png

 

Thanks in advance for your support

1 ACCEPTED SOLUTION
ryan_mayu
Super User
Super User

@Yazid 

change the start date to date type

 

then create a column

 

output = if('Table'[startdate]=maxx(FILTER('Table',year('Table'[startdate])=year(EARLIER('Table'[startdate]))),'Table'[startdate]),'Table'[startdate])
 
11.PNG




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

3 REPLIES 3
ryan_mayu
Super User
Super User

@Yazid 

change the start date to date type

 

then create a column

 

output = if('Table'[startdate]=maxx(FILTER('Table',year('Table'[startdate])=year(EARLIER('Table'[startdate]))),'Table'[startdate]),'Table'[startdate])
 
11.PNG




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Thank you !

you are welcome





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors