grey out certain days automatically

labibliobecca

New Member
Joined
Nov 11, 2024
Messages
1
Office Version
  1. 365
Platform
  1. Windows
Hello!

I am a newbie at Excel, but have been making task managers for my department at work. The task manager details opening and closing tasks, with boxes to initial or check off each day. The thing is, certain tasks only apply once a week, or every day except Saturday, etc. Each month I have to manually make a copy and grey out individual/merged cells to mark when a task is not applicable that day. It gets tedious, and other colleagues are nervous about messing it up if I am out.

I am hoping there is some way to make Excel know what day of the week a cell is "in," maybe using the TODAY feature? Or conditional formatting? I have watched a variety of video tutorials but have not found the solution yet. One last note: I also usually use the online version of Excel, so that multiple people can have it open simultaneously.

1731372691203.png
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
You can try something like this. The weekday function (when you don't use its second argument, which I didn't in this case) will always return the number of the day of the week it's being given. Sunday is 1, Monday is 2, Tuesday is 3, etc.

Book2
ABCDEF
112345
2Process 1
3Monday Task
4Tuesday Task
5Saturday Task
Sheet2
Cells with Conditional Formatting
CellConditionCell FormatStop If True
A5:F5Expression=WEEKDAY(TODAY())=7textNO
A4:F4Expression=WEEKDAY(TODAY())=3textNO
A3:F3Expression=WEEKDAY(TODAY())=2textNO
 
Upvote 0
Or something like this:

Book2
ABCDEF
112345
2Process 1
3Monday-Only Task
4Tuesday-Only Task
5Saturday-Only Task
Sheet2
Cells with Conditional Formatting
CellConditionCell FormatStop If True
A5:F5Expression=NOT(WEEKDAY(TODAY())=7)textNO
A4:F4Expression=NOT(WEEKDAY(TODAY())=3)textNO
A3:F3Expression=NOT(WEEKDAY(TODAY())=2)textNO
 
Upvote 0

Forum statistics

Threads
1,223,620
Messages
6,173,368
Members
452,513
Latest member
Aage

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