Quater dates that fall on the same week day

Charlene Durand

Board Regular
Joined
Sep 19, 2015
Messages
99
Office Version
  1. 365
Platform
  1. Windows
I am trying to set up a list of clients and a proposed date for a quaterly meeting. most clents have a spcific day in that week they would want to have it eg. friday

my current formula is:
=DATE(YEAR($A$2)+0,MONTH($A$2)+3,DAY($A$2)*1)

$A$2 = the date of the last meeting for them or i set it as at 2023/12/31 to find quter dates for 2024

Currently this formula gives me weekend and public holidays which i don't want, so if the day fall's on a public holiday give me an alternitive same with weekends.
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
This schedules the meeting for exactly 13 weeks later. If that is on the holiday list, it will push it another week or two.
MrExcelPlayground22.xlsx
AB
1Last meetingProposed next meeting
24/26/20247/26/2024
3
4List of holidays
51/1/2024
61/15/2024
72/8/2024
85/25/2024
97/4/2024
109/3/2024
1110/12/2024
1211/7/2024
1311/11/2024
1412/25/2024
Sheet16
Cell Formulas
RangeFormula
B2B2=IF(ISNA(MATCH(A2+7*13,A5:A14,0)),A2+7*13,IF(ISNA(MATCH(A2+7*14,A5:A14,0)),A2+7*14,A2+7*15))
 
Upvote 0
See if the following formula works for you:
Excel Formula:
=WORKDAY.INTL(EDATE(A2,3)+1,-1,"1111011",Holidays)
Here "1111011" sets the target date to Friday, and Holidays is a named range that contains holiday dates.
 
Upvote 0

Forum statistics

Threads
1,215,494
Messages
6,125,139
Members
449,207
Latest member
VictorSiwiide

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top