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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

How to get Fiscal year end date based on today's date

Hi All,

 

I have a column which holds today's date.Now, my requirement is to generate a Fiscal year end date in new column based on Today's date.

 

In my data fiscal year starts from 1st April to 31st March.

 

Ex:Today's date is 01/10/2021 based on that date i have to generate a column which should show fiscal year end date that is 31/03/2022.

 

Can someone help on this.

 

 

Thanks in advance.

1 ACCEPTED SOLUTION
Singaravelu_R
Resolver III
Resolver III

Hi Harika,

 

Please create a calcuate column 

Year=YEAR(Data[Date].[Date])
Month = MONTH(Data[Date].[Date])
 
Singaravelu_R_0-1633083202262.pngSingaravelu_R_1-1633083221392.png

For fiscal year use below calculated column 

 

Fiscal Year = if((Data[year]=YEAR(TODAY()) && Data[Month]>=4), DATE(year(TODAY())+1,3,31),if((Data[year]=YEAR(TODAY())+1 && Data[Month]<=3), DATE(year(TODAY())+1,3,31)))
 
Singaravelu_R_2-1633083258961.png

 

View solution in original post

2 REPLIES 2
Singaravelu_R
Resolver III
Resolver III

Hi Harika,

 

Please create a calcuate column 

Year=YEAR(Data[Date].[Date])
Month = MONTH(Data[Date].[Date])
 
Singaravelu_R_0-1633083202262.pngSingaravelu_R_1-1633083221392.png

For fiscal year use below calculated column 

 

Fiscal Year = if((Data[year]=YEAR(TODAY()) && Data[Month]>=4), DATE(year(TODAY())+1,3,31),if((Data[year]=YEAR(TODAY())+1 && Data[Month]<=3), DATE(year(TODAY())+1,3,31)))
 
Singaravelu_R_2-1633083258961.png

 

Fiscal Year End1 = if((Data[year]=YEAR(TODAY()) && Data[Month]>=4), DATE(year(TODAY())+1,3,31),if((Data[year]=YEAR(TODAY())+1 && Data[Month]<=3), DATE(year(TODAY())+1,3,31),if((Data[year]<> YEAR(today()) && Data[Month] >=4),DATE(YEAR(Data[Date].[Date])+1,3,31),if((Data[year]<> YEAR(today()) && Data[Month] <=3),DATE(YEAR(Data[Date].[Date]),3,31),if((Data[year]=YEAR(TODAY()) && Data[Month]<=3), DATE(year(TODAY()),3,31))))))

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors