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
clarainesgg
Helper I
Helper I

Custom my own fiscal year

Hi folks, 

 

I need to custome my own Fiscal year:

For examplea: my fiscal year:

  FY23: start from April-23 to Mar-24

  FY24: start from April-24 to Mar-25

 

clarainesgg_0-1724098898264.png

 

Thank you for your help!

 

 

3 ACCEPTED SOLUTIONS
Greg_Deckler
Community Champion
Community Champion

@clarainesgg You can use Melissa de Korte's Power Query date table: Extended Date Table (Power Query M function) - Power Query / M Code Showcase - Enterprise DNA Forum

 

I also created a DAX custom fiscal calendar date table here: DAX Custom 445 Calendar - Microsoft Fabric Community



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

Ashish_Mathur
Super User
Super User

Hi,

In the Calendar Table, enter this calculated column formula

FY = if(month(calendar[date])>=4,"FY"&year(calendar[date]),"FY"&year(calendar[date])-1)

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

View solution in original post

Anonymous
Not applicable

Hi all,thanks for the quick reply, I'll add more.

Hi @clarainesgg , 

Try this.

Fiscal Year = 
IF (
    'Calendar'[Date] >= DATE ( 2023, 4, 1 )
        && 'Calendar'[Date] <= EOMONTH ( DATE ( 2024, 3, 1 ), 0 ),
    "FY23",
    IF (
        'Calendar'[Date] >= DATE ( 2024, 4, 1 )
            && 'Calendar'[Date] <= EOMONTH ( DATE ( 2025, 3, 1 ), 0 ),
        "FY24",
        "FY25"
    )
)

 

vzhouwenmsft_0-1724134943697.png

 

Best Regards,
Wenbin Zhou

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi all,thanks for the quick reply, I'll add more.

Hi @clarainesgg , 

Try this.

Fiscal Year = 
IF (
    'Calendar'[Date] >= DATE ( 2023, 4, 1 )
        && 'Calendar'[Date] <= EOMONTH ( DATE ( 2024, 3, 1 ), 0 ),
    "FY23",
    IF (
        'Calendar'[Date] >= DATE ( 2024, 4, 1 )
            && 'Calendar'[Date] <= EOMONTH ( DATE ( 2025, 3, 1 ), 0 ),
        "FY24",
        "FY25"
    )
)

 

vzhouwenmsft_0-1724134943697.png

 

Best Regards,
Wenbin Zhou

Ashish_Mathur
Super User
Super User

Hi,

In the Calendar Table, enter this calculated column formula

FY = if(month(calendar[date])>=4,"FY"&year(calendar[date]),"FY"&year(calendar[date])-1)

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
Greg_Deckler
Community Champion
Community Champion

@clarainesgg You can use Melissa de Korte's Power Query date table: Extended Date Table (Power Query M function) - Power Query / M Code Showcase - Enterprise DNA Forum

 

I also created a DAX custom fiscal calendar date table here: DAX Custom 445 Calendar - Microsoft Fabric Community



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

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.