Forum Discussion
tsaurus
Aug 20, 2019Copper Contributor
Value fall between dates? Looking retrospectively
Hi! I have a sheet that includes in each row, a start date cell and a finish date cell. Third cell per row I've got happily set up to tell me the working day difference between the start and finish ...
- Aug 20, 2019
For such sample
that could be like
Unfinished tasks
=COUNTIFS(B:B,">"&$G$2,A:A,"<="&$G$2)
Workdays opened on that date
=IF( (A2<=$G$2)*(B2>=$G$2),NETWORKDAYS(A2,MIN(B2,$G$2)),0)
SergeiBaklan
Aug 20, 2019Diamond Contributor
For such sample
that could be like
Unfinished tasks
=COUNTIFS(B:B,">"&$G$2,A:A,"<="&$G$2)
Workdays opened on that date
=IF( (A2<=$G$2)*(B2>=$G$2),NETWORKDAYS(A2,MIN(B2,$G$2)),0)
- tsaurusAug 22, 2019Copper ContributorThanks Sergei! Always looks so simple once it's laid out. Works a charm!
- SergeiBaklanAug 22, 2019Diamond Contributor
tsaurus , you are welcome