Calculating "clear days"
I had asked if there was a special formula to calculate days where we can exclude a certain day. For example, if we exclude the start date, but 14 days later.
RE: Calculating "clear days"
Hi Simon,
Thank you for the forum question.
To calculate "clear days" in Excel—where you exclude the start date and count a specific number of days afterward (e.g., 14 days)—you can use a simple formula depending on whether you want to include weekends or not.
If you want to exclude the start date and count calendar days:
Use:
excel
=StartDate + NumberOfDays
But since you want to exclude the start date, you add 1 less day:
excel
=StartDate + 14
This gives you the date 14 clear days after the start date, not counting the start date itself.
If you want to **exclude weekends** (i.e., count only working days):
Use the `WORKDAY` function:
excel
=WORKDAY(StartDate, 14)
This also excludes the start date by default and counts 14 working days forward.
If you want to **include holidays, use:
excel
=WORKDAY(StartDate, 14, Holidays)
Where `Holidays` is a range of cells containing holiday dates.
Example:
If `A1` contains `08/07/2025` (July 8, 2025), then:
=A1 + 14` → July 22, 2025 (14 calendar days after, excluding start date)
=WORKDAY(A1, 14)` → July 26, 2025 (14 working days after, excluding start date)
Kind regards
Jens Bonde
Microsoft Office Specialist Trainer
Tel: 0207 987 3777
STL - https://www.stl-training.co.uk
98%+ recommend us
London's leader with UK wide delivery in Microsoft Office training and management training to global brands, FTSE 100, SME's and the public sector
RE: Calculating "clear days"
I completed the Excel intermediate training yesterday; mange tak (thank you so much!) Jens for such an entertaining and engaging training session.
I had a related question that I was wondering if you could please expand upon. You mentioned yesterday that the =WORKDAY.INTL formula can be used to specify non-working days when your working pattern doesn't fit the standard Monday-Friday pattern; however we didn't have time to cover this. My manager Melissa and I work Monday-Thursday; could you please explain how we can use this function to avoid having to list every Friday as a holiday?
Many thanks and best wishes,
Rachel
RE: Calculating "clear days"
Hi Rachel,
Sorry for the delay in responding. We don't get notified of new comments to posts that are marked as resolved.
I hope you were able to solve the issue. If not...
That's exactly what WORKDAY.INTL is designed for. Instead of maintaining a long list of Fridays as holidays, you can tell Excel which days of the week are non-working days.
Since you and Melissa work Monday to Thursday, Friday, Saturday and Sunday are your non-working days. The easiest way is to use the 7-character weekend pattern:
=WORKDAY.INTL(A2,5,"0000111")
The seven characters represent Monday through Sunday, where:
0 = working day
1 = non-working day
So "0000111" means:
Mon=0
Tue=0
Wed=0
Thu=0
Fri=1
Sat=1
Sun=1
=WORKDAY.INTL(A2,5,"0000111",$H$2:$H$20)
This is much easier to maintain than listing every Friday as a holiday, because Excel automatically treats every Friday, Saturday and Sunday as non-working days.
Hope that helps!
Regards, Rich


