Forum Discussion

tsaurus's avatar
tsaurus
Copper Contributor
Aug 20, 2019
Solved

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 ...
  • SergeiBaklan's avatar
    Aug 20, 2019

    tsaurus 

    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)

Resources