Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to get the processed days from 2 dates?

Hi,

How can I get the duration of processing from two dates?

From PR Approved date to PO creation date including the weekend?

Thanks a lot!!

Regards,

Ahyel

8 Replies
MK_QSL
MVP
MVP

Use Below Function...
=NetWorkDays(StartDate, EndDate)

Or

=Interval(EndDate-StartDate,'D')

marcus_malinow
Partner - Specialist III
Partner - Specialist III

Alternatively

num(PR Approved Date) - num(PO creation date)

rustyfishbones
Master II
Master II

Try

[PO Creation] - [PR Approved]

rustyfishbones
Master II
Master II

Or like Manish said

2014-03-14_1120.png

Not applicable
Author

Hi,

Networkday excludes weekends right? How to include weekends in the count?

Thank you

manojkulkarni
Partner - Specialist II
Partner - Specialist II

NetWorkdays() : Returns the number of working days (Monday-Friday).

Better to use Interval(Enddate-StartDate,'D')

MK_QSL
MVP
MVP

use my second option.

Not applicable
Author

Use the below option if you need to include weekends:

Floor(PO_Approved_Date) - Floor(PO_Created_Date)