Excel 2010 Workday and Weekday Formula

Chris Waller

Board Regular
Joined
Jan 18, 2009
Messages
183
Office Version
  1. 365
Platform
  1. Windows
Hi,

I have a Worksheet that contains a list of colleagues and their annual leave. The dates are horizontal and they are all formulas referring to a date in cell B1. The formulas are in the format of =workday(C4,1). Some of these formulas are formatted as ddd to show the day of the week. What I want to do is create a formula or VBA that will put NWD (non working day) in the cells for each Thur or Fri. One of my colleagues doesn't work every other Monday. I was jsut wondering what is the best and easiest way to go about performing both these tasks? TIA
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Not sure I completely understand but for the Thu, Fri one would something like the following work (I just used J8 as the date cell)? This would return NWD for any date which is Thu or Fri and return the day of week for the others. If you would want something else besides day of week, say blank, you could put "" where the last WORKDAY formula is located.

=IF(OR(TEXT(WORKDAY(J8,0),"DDD")="Thu",TEXT(WORKDAY(J8,0),"DDD")="Fri"),"NWD",WORKDAY(J8,0))
 
Upvote 0
SG2001,

Thanks for the prompt reply. I did as you suggested and put the blank in as you said. It does appear to work, although I am at home at the moment and unable to try it out until Monday. Thanks again for your help. It is much appreciated.
 
Upvote 0
This might work for the Monday part of question. You will have to manually enter NWD for the first Monday if it was a day off.
=IF(TEXT(WORKDAY(T8,0),"DDD")<>"Mon","",IF(OFFSET(T8,6,-7)="NWD","","NWD"))
 
Upvote 0
SG2001,

Thanks for the second part of the formula. I haven't tried it yet but I will try it tomorrow when I get to work. I will let you know the outcome. Thanks again for your help.
 
Upvote 0
SG2001,

I did try the formula and it appears to work in part. For example it is highlighting every monday as a NWD (Non Working Day) rather than every other Monday. I just cannot work out the second part of the formula is doing from, IF(Offset etc, etc. I think T8 is referencing the cell that contains the day of the week. I just cannot make out what the 6 and the -7 are doing. The information is being input on row 9 on the Spreadsheet and thit will be input on column B and dragged through to column IG. Thanks once again.
 
Upvote 0

Forum statistics

Threads
1,223,896
Messages
6,175,262
Members
452,627
Latest member
KitkatToby

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