Automated progress bars (related to sub tasks)

Comments

5 comments

  • Ethan Unzicker

    This is definitely a great idea! The progress bars are kiiiinda pointless right now because a lot of changes to it are arbitrary. Having this be automated would be fantastic!

    0
    Comment actions Permalink
  • Kent Watson

    HI Niklas,

     

    This can be achieved if you are using GlobiFlow.

    Alternately you can ditch your progress bar for your deliverables and projects and replace them with calculated fields

    Deliverable Progress = @Avg of Task Progress

    Project Progress = @Avg of Deliverable Progress

    In the properties of the calculation field you can set the units to "%"

    0
    Comment actions Permalink
  • Niklas Schöttner

    Hello Kent,

    thanks a lot.
    I used the calculated fields to show the progress.

    Problem solved! :)

    0
    Comment actions Permalink
  • Victoria Aparicio

    Hello, I want to do the same, I want to show the avg of some fields in a calculation field, but I want to show like the progressbar.

    Please help me

    0
    Comment actions Permalink
  • Kent Watson

    Hi Victoria,

    You could try this.  I haven't tested it when the average progress is 0 or 100.  Let me know if there are any issues

    var prog = Math.floor(@Avg of Progress * 500/100);
    var bal = 500 - prog;
    var col = "677BDE";
    var txt = Math.floor(@Avg of Progress).toString();
    write = "![](http://dummyimage.com/" + prog + "x" + 25 + "/" + col + "/" + "FFFFFF" + ".png&text=" + txt.toUpperCase() + ")" + "![](http://dummyimage.com/" + bal + "x" + 25 + "/C0C0C0/C0C0C0.png&text=0)";

     

    Good luck!

     

    0
    Comment actions Permalink

Please sign in to leave a comment.

Powered by Zendesk