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)
Kodipady
Aug 20, 2019Iron Contributor
Would you be able share a sample worksheet with some example data points and expected result ? That will help you and contributors here to get a quicker and better solution for you.
tsaurus
Aug 22, 2019Copper Contributor
Thanks Kodipady 🙂 was my first post but will definitely keep it in mind for any future posts!