Forum Discussion
Thingone
Feb 03, 2024Copper Contributor
Need help trying to find missing days
I am trying to figure out a way to find the data I want. The data I am looking for is absent days. The system I pull my data from goes nicely into an excel sheet. One column has dates. The next has t...
PeterBartholomew1
Feb 03, 2024Silver Contributor
= LET(
workdays, WORKDAY.INTL(baseDate,SEQUENCE(14),"0000111"),
missing, NOT(SUMIFS(hours, date, workdays)),
FILTER(workdays, missing)
)
The first line builds a list of Monday-Thursday workdays. Then SUMIFS is used to collect the total hours worked for each of those days, and NOT causes the zeros to be returned as TRUE. Finally the intended workdays are filtered, retaining only days flagged as 'missing'.
PeterBartholomew1
Feb 03, 2024Silver Contributor