find the first business day of november of LAST year

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
Is Business day and Weekday the same?

Weekdays are Monday through Friday.
 
Upvote 0
You don't state how you are determining what is a business day but maybe...


Book1
C
2Thursday 01/11/2018
Sheet1
Cell Formulas
RangeFormula
C2=WORKDAY(DATE(2018,11,1)-1,1)
 
Last edited:
Upvote 0
Change the 11 to Month(Today()) and the 2018 to Year(Today()) - 1
 
Last edited:
Upvote 0
Various options....


Cell Formulas
RangeFormula
A1=TODAY()
B1=WORKDAY(DATE(2018,11,1)-1,1)
C1=WORKDAY(DATE(YEAR(A1)-1,MONTH(A1),1)-1,1)
C2=WORKDAY(DATE(YEAR(TODAY())-1,MONTH(TODAY()),1)-1,1)
D1=WORKDAY(EOMONTH(A1,-13),1)
D2=WORKDAY(EOMONTH(TODAY(),-13),1)


There is also the option in Workday to put a list of holidays so you can cover Public holidays and leave time.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,792
Messages
6,121,612
Members
449,039
Latest member
Mbone Mathonsi

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