+ Reply to Thread
Results 1 to 16 of 16

Tracking Project With Gantt Chart

  1. #1
    Forum Contributor
    Join Date
    03-16-2010
    Location
    Phnom Penh, Cambodia
    MS-Off Ver
    Excel 2003
    Posts
    215

    Tracking Project With Gantt Chart

    Hi,

    I want to use the gantt chart to track the progress of the construction project. I have many different building to be built. some of them might be started at the same time. some of them might finish at the same time or different time.

    Can you please advice the idea of how to create this gantt chart in excel?

    thanks

    sanlen
    Attached Files Attached Files
    Last edited by sanlen; 08-19-2010 at 12:41 AM.

  2. #2
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: Tracking Project With Gantt Chart

    It's really not very clear what you want ... always a good idea to outline (manually) your desired results - this helps prevents confusion/misinterpretation - issues with terminology.
    Attached Files Attached Files

  3. #3
    Forum Guru MarvinP's Avatar
    Join Date
    07-23-2010
    Location
    Woodinville, WA
    MS-Off Ver
    Office 365
    Posts
    16,167

    Re: Tracking Project With Gantt Chart

    Search the net for Excel as a Timeline and see if some of them fit your needs:
    A few quick hits found:
    http://faculty.musowls.org/RutledgeJ/Excel_timeline.htm and
    http://www.vertex42.com/ExcelTemplates/timeline.html

  4. #4
    Forum Contributor
    Join Date
    03-16-2010
    Location
    Phnom Penh, Cambodia
    MS-Off Ver
    Excel 2003
    Posts
    215

    Re: Tracking Project With Gantt Chart

    Hi All,

    Thanks you very much for the guidiance. They are exactly what i am looking for.

    Can you please also advice how to get off the true & false value when using the formula with condition format?

    thanks
    sanlen

  5. #5
    Forum Contributor
    Join Date
    03-16-2010
    Location
    Phnom Penh, Cambodia
    MS-Off Ver
    Excel 2003
    Posts
    215

    Re: Tracking Project With Gantt Chart

    hi,

    i would like to add another condition to this gantt chart. If there are any problems with the project then the color would be in blue.

    However, if there are any problems happend during the project implementation at certain milestone then the color of at that milestone would be in yellow.

    I have added the project problems column into Main Data sheet.

    could you please advice?

    Thanks
    Attached Files Attached Files

  6. #6
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: Tracking Project With Gantt Chart

    The narrative above is confusing... I think you're saying if no error then blue else yellow ?

    'Gantt Chart'!B3:
    =AND('Main Data'!C3<TODAY(),ISNUMBER('Main Data'!C3))*(1+('Main Data'!$B3="Yes"))
    copied across matrix B3:K13

    2 rules for B3:K13

    rule1: value = 1 - format blue
    rule2: value = 2 - format yellow

  7. #7
    Forum Contributor
    Join Date
    03-16-2010
    Location
    Phnom Penh, Cambodia
    MS-Off Ver
    Excel 2003
    Posts
    215

    Re: Tracking Project With Gantt Chart

    Hi,

    I am thinking of using 3 different colors on the sheet. Grey: the default background color that i just changed. Blue: the color for those milestone completed, Yellow: milestone that are having problems and make project cannot be continued and waiting the solution.

    i.e: while we in the middle of MS03 of PROJECT2 & PROJECT3 then we suddenly having problems and PROJECT2 & PROJECT3 need to be halted. So i will go to PROJECT PROBLEMS in Main Data sheet and manually change the status to Yes.

    Instead of the default background color (Grey), and after the status i change to Yes, i want the color for PROJECT 2 & PROJECT3 at MS03 to be changed to Yellow.

    thanks you very much for your time.

  8. #8
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: Tracking Project With Gantt Chart

    Quote Originally Posted by sanlen
    Instead of the default background color (Grey), and after the status i change to Yes, i want the color for PROJECT 2 & PROJECT3 at MS03 to be changed to Yellow.
    In which case

    Please Login or Register  to view this content.
    same rules as before ... ie one where value = 1 (blue) and another where value = 2 (yellow)

    (the only difference in the above formula from before is that now only the last milestone on the project will be flagged yellow [where problem exists])

  9. #9
    Forum Contributor
    Join Date
    03-16-2010
    Location
    Phnom Penh, Cambodia
    MS-Off Ver
    Excel 2003
    Posts
    215

    Re: Tracking Project With Gantt Chart

    Hi,

    i am trying the below formula for my gantt chart

    =IF(AND('Main Data'!B3<>"",'Main Data'!B3<=TODAY(),ISNUMBER('Main Data'!B3)),"BULE",IF(AND('Main Data'!B3<>"",ISTEXT('Main Data'!B3)),"YELLOW"))

    Condition 1:
    Cell Value, equal to =B3="BLUE"

    Condition 2:
    Cell Value, equal to =B3="YELLOW"

    However, when i applied this to Conditional Formatting it seems does not work.

    Could you please advice?
    Last edited by sanlen; 08-31-2010 at 09:24 AM.

  10. #10
    Forum Contributor
    Join Date
    03-16-2010
    Location
    Phnom Penh, Cambodia
    MS-Off Ver
    Excel 2003
    Posts
    215

    Re: Tracking Project With Gantt Chart

    Kindly advice please...!

    Thanks

  11. #11
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: Tracking Project With Gantt Chart

    post a file with the formulae and formatting in place

  12. #12
    Forum Contributor
    Join Date
    03-16-2010
    Location
    Phnom Penh, Cambodia
    MS-Off Ver
    Excel 2003
    Posts
    215

    Re: Tracking Project With Gantt Chart

    Hi,

    Pretty much thanks. I have attached the file here.
    Attached Files Attached Files

  13. #13
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: Tracking Project With Gantt Chart

    If you use "Value Is" rather than "Formula Is" approach to Conditional Formatting then the rules would be:

    Cell ValueIs: Blue
    rather than: =B2="Blue"

    (same for Yellow)

    If you use a Formula driven approach then use =B2="Blue"

    You might also want to revise the formula in the sample to return Blue rather than Bule

  14. #14
    Forum Contributor
    Join Date
    03-16-2010
    Location
    Phnom Penh, Cambodia
    MS-Off Ver
    Excel 2003
    Posts
    215

    Re: Tracking Project With Gantt Chart

    Hi,

    I tried, but it still does not work.

    Just straight forward with honest, can you please help on this

    Thanks,

  15. #15
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: Tracking Project With Gantt Chart

    You have the solution so there's little more I can do at this stage I'm afraid.

    I would suggest deleting your existing rules and starting again - you may find it easier to install FormulaIs based rules with your existing logic.

  16. #16
    Forum Contributor
    Join Date
    03-16-2010
    Location
    Phnom Penh, Cambodia
    MS-Off Ver
    Excel 2003
    Posts
    215

    Re: Tracking Project With Gantt Chart

    Hi,

    So sorry as seem i still cannot figure out how to settle this.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1