Forum Discussion
Nita87
Jul 30, 2020Copper Contributor
Project Progress % between tow dates
Hi everyone I'm trying to calculate de % progress of my projects and I use NETWORKDAYS.INTL to estimate my project duration in days. How can i calculate the nr of Days Completed (workdays) and the ...
PReagan
Jul 30, 2020Bronze Contributor
Hello Nita87,
Number of days between start and end date:
=NETWORKDAYS.INTL(start_date,end_date,[weekend],[holdiays])
Percentage completion of project:
=IF(NETWORKDAYS.INTL(start_date,TODAY(),[weekend],[holdiays])/NETWORKDAYS.INTL(start_date,end_date,[weekend],[holdiays])>1,
1,
NETWORKDAYS.INTL(start_date,TODAY(),[weekend],[holdiays])/NETWORKDAYS.INTL(start_date,end_date,[weekend],[holdiays]))
- Riny_van_EekelenJul 31, 2020Platinum Contributor
Nita87 As a variant
=MIN(1,NETWORKDAYS.INTL(start_date,TODAY(),[weekend],[holdiays])/NETWORKDAYS.INTL(start_date,end_date,[weekend],[holdiays])