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
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.
Solved! Go to Solution.
Thank you. Also found a new visual Gantt Chart-xViz where we can select Fiscal year in format and give starting month.
Thank you. Also found a new visual Gantt Chart-xViz where we can select Fiscal year in format and give starting month.
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.
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
114 | |
95 | |
86 | |
78 | |
66 |
User | Count |
---|---|
150 | |
118 | |
111 | |
106 | |
95 |