Hello,
I'm looking for a better way to fill down the Weekdays without using the Fill Down > Fill Weekdays option as it messes up my formatting.
Currently I enter a Starting Date, and the cells below =Today()+1 to FRI.
On Mondays, I have to use =Today()+3 to skip the Weekends.
This creates an Inconsistent Error message that I'm tired of looking at.
I considered the WEEKDAY function, but it doesn't seem to work for me considering I'm using a start date that needs to be entered manually as I'm only tracking a 3 week period at a time in the same space.
I'm looking for a better way to fill down the Weekdays without using the Fill Down > Fill Weekdays option as it messes up my formatting.
Currently I enter a Starting Date, and the cells below =Today()+1 to FRI.
On Mondays, I have to use =Today()+3 to skip the Weekends.
This creates an Inconsistent Error message that I'm tired of looking at.
I considered the WEEKDAY function, but it doesn't seem to work for me considering I'm using a start date that needs to be entered manually as I'm only tracking a 3 week period at a time in the same space.
WEEKDAY function - Microsoft Support
Returns the day of the week corresponding to a date. The day is given as an integer, ranging from 1 (Sunday) to 7 (Saturday), by default.
support.microsoft.com
Reading Tracker.xlsm | ||||
---|---|---|---|---|
B | C | |||
22 | Scheduling | |||
23 | Day | Test Date | ||
24 | MON | 30-Jan | ||
25 | TUE | 31-Jan | ||
26 | WED | 1-Feb | ||
27 | THU | 2-Feb | ||
28 | FRI | 3-Feb | ||
29 | MON | 6-Feb | ||
30 | TUE | 7-Feb | ||
31 | WED | 8-Feb | ||
32 | THU | 9-Feb | ||
33 | FRI | 10-Feb | ||
34 | MON | 13-Feb | ||
35 | TUE | 14-Feb | ||
36 | WED | 15-Feb | ||
37 | THU | 16-Feb | ||
38 | FRI | 17-Feb | ||
Dashboard |
Cell Formulas | ||
---|---|---|
Range | Formula | |
B24:B38 | B24 | =UPPER(TEXT($C24,"ddd")) |
C25:C28,C30:C33,C35:C38 | C25 | =$C24+1 |
C29,C34 | C29 | =$C28+3 |
Cells with Conditional Formatting | ||||
---|---|---|---|---|
Cell | Condition | Cell Format | Stop If True | |
C24:P39 | Expression | =AND($C24=TODAY()) | text | NO |
C24:P39 | Expression | =AND($C24=TODAY()+1) | text | NO |