Mole999,
Thank you for the suggestion. I will have to learn how to limit the entries to time values (hopefully it is no big deal), and I can try to figure that out on my own, or if you have time, I don't mind your instruction. I was really tired last night by the time I finished that lengthy post and thought maybe by now examples might be of some use (?). I hope. Thanks again for any help you might offer.
As examples ...
Cell D4 is where the shift is entered.
Shift options, at present,
0730-1600
0730-2000
1130-2400
1530-2400
2330 0800 [there are 10 spaces to accomodate wraparound text and the desired appearance on the printed page]
1930 0800
1930
2330
D [a regularly scheduled day off]
Dr [a requested scheduled day off without using vacation]
There are other options I'd like to add but I think I'm constrained by nesting limitations and formula length limitations.
Cell D5 is where length of hours of the shift is tracked. For example, if the entry in D4 is "730-1600", then D5 automatically fills with "8" (an eight hour shift). This pattern is repeated throughout the 14 day pay period and then each of these daily entries is added to a tally elsewhere in the sheet to add to a total number of scheduled hours for the individual for the pay period.
To this point this formula has worked fine ...
=IF(OR(D4="730-1600",D4="1530-2400",D4="800",D4="0800 2330",D4="0800
D"),8,(IF(OR(D4="730-2000",D4="1130-2400",D4="0800
1930"),12,(IF(OR(D4=1930),4,(IF(OR(D4=2330,D4="d",D4="dr"),0,"?")))))))
Conditional formatting ...
If D5 equals "?", based on the formula noted, the background of D5 turns blue. This is simply a visual prompt for the scheduler that D5 is waiting for a manual entry. A question mark is generated if anything other than the listed options is entered in D4. This conditional format has not been a problem.
Second conditional format is where I've had difficulty (I think because of refedit character length limitations).
What I want is for D5 to turn green if value in D5 is a manual entry. If needed I can explain why, here in this post, I want this, but did explain it in an earlier very long post. [There was one ERROR in that explanation - the line that read "Doing this allowed the Scheduler to visually look over Sheet1 and find any cells in green and make sure the number entered in that cell did in deed accurately reflect the number of hours associated with the schedule in the cell to the right."
CORRECTION
the words of that sentence corrected read "Doing this allowed the Scheduler to visually look over Sheet1 and find any cells
in green and make sure the number entered in that cell did in deed accurately reflect the number of hours associated with the
schedule in the cell to the LEFT (correction)."
The most effective way I could think of to accomplish the what and why of this (the turning green of D5) was to enter a second condition which is
"Cell Value is"
"not equal to"
"=IF(OR(D4="730-1600",D4="1530-2400",D4=800,D4="0800 2330",D4="0800
D"),8,(IF(OR(D4="730-2000",D4="1130-2400",D4="0800
1930"),12,(IF(OR(D4=1930),4,(IF(OR(D4=2330,D4="d",D4="dr"),0,"?")))))))
This worked fine until I tried to accomodate more options of possible entries, which pressed me against the refedit box
character limits ... which prompted me to write. I hope all this makes sense.
A variation of the solution offered will more likely than not have application to cells E4, F4, G4, H4, I4, J4 which are used, based on the entry of D4, to track staffing for various shifts or shift parts.
It is really pretty cool when it works ... and it has worked until the apparent desire for more shift entry options.
Thanks for all the considerations, help, suggestions, thoughts, advice ...
John.