Convert day of month to Business Day date

We have a calendar template that we re-use every month. On this calendar ,we have a column that is the numerical representation of the day of the month (1, 2, 3, 4, etc.). Each month, this is a different date. Currently, someone is manually entering the dates that correspond to the day number.
Is there a formula that would convert 1 to the first business day, 2 to the second business day, etc.?
Answers
-
So you basically need day() except it shouldn't increment on weekends, right? So using May 2025 as an example,
5/1/25 = 1
5/2/25 = 2
5/5/25 = 3
right?
In addition, I presume you want to skip holidays also…
Networkdays() using the last day of the previous month and the date you are evaluating (possibly including an offset of 1, haven't tested it) for the start and end date seems like it should work for you.
-
-
@Paul Newcome
Here is a sample calendar from March. I included the Gantt to show the distribution across weekdays (this is how they are currently checking themselves manually)
Essentially, the goal would be to start with "Business Day" and a helper cell for the current month an have the formula calculate "Date" -
If you want to derive BusinessDay from Date, the method I suggested originally should work:
=networkdays(date@row-day(date@row)-1,date@row)
if you want to derive Date from BusinessDay, workday() should work:
=workday(today()-day(today())+1,BusinessDay@row)
Both also allow you to address holidays if you are so inclined.
-
Start by inserting a Sheet Summary date type field. This field will be where you set the month for the calendar. You can enter any date of the month (the formula will make it so you don't need to worry about selecting a specific date so long as it is in the desired month/year).
Then this should get your dates in the Date column:
=WORKDAY(DATE(YEAR([Date Summary Field]#), MONTH([Date Summary Field]#), 1), [Business Day]@row-1)
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.4K Get Help
- 464 Global Discussions
- 156 Industry Talk
- 509 Announcements
- 5.4K Ideas & Feature Requests
- 86 Brandfolder
- 156 Just for fun
- 81 Community Job Board
- 518 Show & Tell
- 35 Member Spotlight
- 3 SmartStories
- 307 Events
- 35 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!