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
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
v-rzhou-msft
Community Support
Community Support

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
v-rzhou-msft
Community Support
Community Support

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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

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

MayPowerBICarousel

Power BI Monthly Update - May 2024

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

Top Kudoed Authors