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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Anonymous
Not applicable

How to short Months by Financial Year

We want to represent the data as per the Financial year, Therefore, We want to start the months from April and ends with March.

1 ACCEPTED SOLUTION
V-lianl-msft
Community Support
Community Support

Hi @Anonymous ,

 

Do you want to create fiscal year ?

Create a new column for Fiscal Year:

FY = IF(AND('Calendar'[Month]>=4,'Calendar'[Month]<=12),'Calendar'[Year]+1,'Calendar'[Year])

 

Hope this helps...


Best Regards,
Liang
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-lianl-msft
Community Support
Community Support

Hi @Anonymous ,

 

Do you want to create fiscal year ?

Create a new column for Fiscal Year:

FY = IF(AND('Calendar'[Month]>=4,'Calendar'[Month]<=12),'Calendar'[Year]+1,'Calendar'[Year])

 

Hope this helps...


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

amitchandak
Super User
Super User

@Anonymous ,

Create a month year sort column for month year

if(month([Date]) <=4, (YEAR([Date]) -1)*100 + month([Date]) +9, (YEAR([Date]) )*100 + month([Date]) -3)

 

 

for month sort

month Sort =

if(month([Date]) <=4, month([Date]) +9, month([Date]) -3)

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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