I have created a Gantt Chart is Google Sheets, with 4 columns: Progress, Start, Days, and Ends.
The issue I am having is when a project is completed, the percentage shown is over 100%, which makes no sense. A project should be 0% completed, 25%, 50%, 100%, etc. It should not be higher than 100%, like 462%.
Example:
- Progress: 462% (should be 100%)
- Start: 2022-10-24
- Days: 25
- Ends: 2022-11-18
| Progress | Start | Days | End |
|---|---|---|---|
| 462% | 2022-10-24 | 25 | 2022-11-18 |
My formula for the progress bar / percentage is =(DATEDIF(E10,TODAY(),"d")+1)/(DATEDIF(E10,G10,"d")+1)
I have tried using IF in my formula, to say something like if percentage >= 100%, percentage == 100% but I could not get it work.
Thanks