Hi,
I'm currently using a formula to spit out a certain number of days between two dates. I want to exclude the first weekend if it falls within the first 3 days, but otherwise include it.
Currently to exclude weekends entirely I'm using
=NETWORKDAYS([SALE DATE]21, [OUTPUT DATE]21) - 4
I'd like the formula to work like this:
If SALE DATE = Wednesday the 14th of August,
and OUTPUT DATE = Wednesday the 28th of August,
I want it to display 12 days, it excludes the first weekend because it was within 3 days of the start date, but counts the second one.
Thank you for any help in advance!