-1

I'm trying to produce a chart similar to a Gantt chart which effectively shows 1 line of information for all tasks, by teams within a project.

This link includes:

  • An linked image showing what I'm looking to achieve.
  • A worksheet that allows me to generate the image using some software called Tableau. However, ideally I want to be able to do something similar with excel 2010 as Tableau server costs a bomb.

Any suggestions would be greatly appreciated.

brettdj
  • 54,857
  • 16
  • 114
  • 177
Faraday
  • 2,904
  • 3
  • 23
  • 46

1 Answers1

4

The new databars/sparklines features provide nice ways to do Gantt Charts and resource histograms, here’s a sample:

enter image description here

One way to achieve this is first set up your table, called A say, then to create the databars, set the min and max formulas equal to defined names Min:=MIN(A[Start])-A[@Start] and Max:=MAX(A[End])-A[@Start]+1.

You can copy down individually with the format painter to propagate. After create a separate range for the resources and add a column sparkline to a cell as shown.

lori_m
  • 5,487
  • 1
  • 18
  • 29