I want to display project progress in Excel 2007. Is there a way to show a progress bar like filled for completed percentage and empty until end date for a milestone or the whole project. It seems I cannot find this functionality.

best, USP

link|improve this question

69% accept rate
Would it be possible to post a sketch or image of the type of problem you are trying to address. I think I have dealt with similar issues in the past but I'm not quite sure exactly what problem you are trying to address. – Ian Turner May 24 '11 at 8:00
Hi, I used conditional formatting to get this but I am not satisfied. flic.kr/p/9LuiqA – user48604 May 24 '11 at 8:41
Just trying to clarify your question, you are happy with the data bar type of conditional formatting where the cell is a task and has a percentage complete. What you would like to do though is change the conditional formatting for a milestone to go from no fill before the milestone to all filled once the milestone has passed? If I'm correct with this, can you clarify what the number in the milestone cell represents? – Ian Turner May 24 '11 at 9:56
The number stands for percentage. I made a new screenshot which is a better example I think. flic.kr/p/9LsQtp The number stands now for the completed percentage of a project. If a milestone is passed it should be colored. Milestones should be passed on a certain date or period. – user48604 May 24 '11 at 11:02
feedback

1 Answer

If you don't mind a text representation and you have your % value in cell A1, you can use:

=REPT(".",A1*50)&TEXT(A1,"0%")&REPT(".",(1-A1)*50)

This will give you results like:

0%..................................................
.....10%.............................................
..........20%........................................
...............30%...................................
....................40%..............................
.........................50%.........................
..............................60%....................
...................................70%...............
........................................80%.........
.............................................90%....
..................................................100%

You can change the hard-coded value of 50 lower/higher to give less/more granularity.

You'll get best results using a fixed width font.

link|improve this answer
I tried this. Am note sure but thx anyway. – user48604 May 24 '11 at 12:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.