Forum Discussion
PBI Glide Path
- 3 years ago
HI, Danielwood
Here is the possible way in PBI:
Install Gantt chart visual: Find and install the Gantt chart.
Combine Year & Quarter: Create a new column combining year and quarter in the Power Query editor using a formula like Date.StartOfQuarter(#date([Year], if [Quarter] = "Qtr 1" then 1 else if [Quarter] = "Qtr 2" then 4 else if [Quarter] = "Qtr 3" then 7 else 10, 15)).
Create Gantt Chart: In the Gantt chart visual, use your new "Start of Quarter" field as the "Start Date" and your unique references field as "Values".
Your unique references will be on the left and a timeline at the bottom, each entry plotted based on its start date.
HI, Danielwood
Here is the possible way in PBI:
Install Gantt chart visual: Find and install the Gantt chart.
Combine Year & Quarter: Create a new column combining year and quarter in the Power Query editor using a formula like Date.StartOfQuarter(#date([Year], if [Quarter] = "Qtr 1" then 1 else if [Quarter] = "Qtr 2" then 4 else if [Quarter] = "Qtr 3" then 7 else 10, 15)).
Create Gantt Chart: In the Gantt chart visual, use your new "Start of Quarter" field as the "Start Date" and your unique references field as "Values".
Your unique references will be on the left and a timeline at the bottom, each entry plotted based on its start date.