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

Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now

Reply
AparnaJ
Helper I
Helper I

Gantt Chart with Fiscal year

Hi All,

We are building a solution showing our roadmap. We have start and end dates for our projects and show them visually using a gantt chart. However we go by Fiscal Year (July to June). But when we provide start/end dates to the charts its taking as calendar year, is there a way to tweak this? Also please advice if there are any other charts that take the dates as fiscal year. Thank you.

1 ACCEPTED SOLUTION
AparnaJ
Helper I
Helper I

Thank you. Also found a new visual Gantt Chart-xViz where we can select Fiscal year in format and give starting month. 

View solution in original post

2 REPLIES 2
AparnaJ
Helper I
Helper I

Thank you. Also found a new visual Gantt Chart-xViz where we can select Fiscal year in format and give starting month. 

v-stephen-msft
Community Support
Community Support

Hi @AparnaJ ,

 

From what I'm understanding, you want to sort data by fiscal year in the x-axis, right?

If so, there's a solution in this similar post.

Solved: change graph X-axis order to fiscal year - Microsoft Power BI Community

Go to the query editor, and created a Month column and created a conditional column based on the Month. Here is the M code.

 

= Table.AddColumn(#"Renamed Columns1", "Custom", each if [#"Month-Number"] = 1 then 8 
else if [#"Month-Number"] = 2 then 9 
else if [#"Month-Number"] = 3 then 10 
else if [#"Month-Number"] = 4 then 11 
else if [#"Month-Number"] = 5 then 12
else if [#"Month-Number"] = 6 then 1
else if [#"Month-Number"] = 7 then 2 
else if [#"Month-Number"] = 8 then 3 
else if [#"Month-Number"] = 9 then 4 
else if [#"Month-Number"] = 10 then 5 
else if [#"Month-Number"] = 11 then 6 
else if [#"Month-Number"] = 12 then 7 
else null)

 

and change the Custom Column format to Number.

Go back to Power BI Desktop, select the Date and then goto Modeling Tab and then select sort by Custom column.

 

Or please try anther solution in the following blog.

Sorting Data by Fiscal Year in Power BI - PowerObjects | Dynamics 365 | HCLTech

 

 

Best Regards,

Stephen Tao

 

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

 

 

Helpful resources

Announcements
OCT PBI Update Carousel

Power BI Monthly Update - October 2024

Check out the October 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.

October NL Carousel

Fabric Community Update - October 2024

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

Users online (2,440)