Gantt Chart for only few tasks

Brass Contributor

Hi, 

  I am working on a program schedule which has many projects in it. Every project has dependencies and schedules. Dependencies of a project links to dependencies of another project, i.e. dependencies for a project are external dependencies for that project. 

 

Structure can be seen below: 

 

Program Schedule 

    Project 1 Schedule 

          External Dependencies (Project 1 )

          Schedule (Project 1)

    Project 2 Schedule 

          External Dependencies (Project 2) 

          Schedule (Project 2)

.... Project n

 

I want to create a gantt chart or something similar, which shows only the dependencies (i.e. I don't want projects appearing in the gantt chart).  The idea is to show interdependencies in a graphical form so that impact of movement of one dependency can be seen on all other downstream dependencies.  

 

I thought of cross-referencing tasks (like in excel using =") but MS Project does not supports cross- referencing. 

 

Any thoughts on how this can be accomplished ? 

3 Replies

@NKumar2010

You say you have a schedule with many projects. Is that a dynamic master with subprojects or simply a single large project with many summary lines representing individual "projects"? In either case those "external" dependencies will appear as normal predecessors and successors although in a Master/Subproject structure the external links will contain the full path to the external task such as shown in this sample.

2023-09-03_18-56-45.png

If you want to isolate all the external links, a simple custom filter such as this will do it:

2023-09-03_19-02-18.png

 

Applying that filter will produce:

2023-09-03_19-01-57.png

 

If however you have just a single large file with multiple "project" summary lines, you can set a Flag field for all dependencies that cross summary groups and then filter on the Flag field.

 

Does that give you what you want?

John

Hi John,
It is a single large file with multiple "project" summary lines. Setting up a flag field occurred to me too, but every time I need the view, I will have to put up the filter. I was wondering if there is a permanent view which always list only the dependencies. How can I create a custom view, just for showing dependencies ?
Also, is there is a way to display custom filed text on gantt chart ?

@NKumar2010

Go to, View > Task Views group > Other views > New. You will get a pop-up asking if you want to create a single or combination view. Select "single" and you will get the View Definition window. Note that a view is made up of several elements, including a view table and filter. So, create the filter for the Flag field and create a view table to specify which fields you want to show along with the view formatting. Then give your custom view a name and you're all set.

2023-09-04_07-55-17.png

On your other question, you can elect to display any Project field in or around Gantt Bars. Go to, Gantt Chart Format > Bar Styles group > Format >Bar Styles. In the Bar Styles window lower half select the "Text" tab and where you want the field name to appear. Note however that adding text to Gantt Bars can make the display very busy and often harder to see so go easy on the custom text.

2023-09-04_08-04-28.png

 

If you really want to get fancy, a macro could automatically identify which tasks are in which summary group, select those that have dependencies that cross between summary groups, set the flag and apply the filter, all with the click of a Quick Access Toolbar icon. Pow! Bam! You're there. 🙂

John