I have a Date column "Date" that lists all 365 days by month. The second column is a Checkbox type called "Days Away" where admin check which days they are away from the office.
I need to calculate the total of the days away excluding weekends and holidays counting only the days that are checked in the second column. Ideally by individual months.
So i need to check the status and if the checkbox is checked, count that day IF it's not a holiday or a weekend.
i'm trying to use
=IF([Days Away], 1, NETWORKDAYS(Date3: Date33), 0, [holidays])
but it returns UNPARSEABLE.
Thank you!
Olya