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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
JB17
Frequent Visitor

Support Date Result based on Fiscal Year

Hi Everyone,

 

Can you help me create DAX for below table? I was trying to get the result yearly. So let say the support date of Product A is Jan 3, 2019, the result will be 2019 because the support date falls within the FiscalYear 2019. I will appreciate all your help!

 

JB17_0-1694775502714.png

Thanks!

 

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @JB17 ,

 

I suggest you to try code as below to create a calculated column.

Result = 
YEAR ( EOMONTH ( 'Table'[Support Date], 2 ) + 1 )

Result is as below.

vrzhoumsft_0-1695022802536.png

 

Best Regards,

Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @JB17 ,

 

I suggest you to try code as below to create a calculated column.

Result = 
YEAR ( EOMONTH ( 'Table'[Support Date], 2 ) + 1 )

Result is as below.

vrzhoumsft_0-1695022802536.png

 

Best Regards,

Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Mahesh0016
Super User
Super User

@JB17 I hope this helps you.

YEARS = YEAR(Table[Support Date])

Thank You.

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.