VB code - Don Guillett |
29-Jan-08 11:42:41
|
A bit more detail would be helpful
--
Don Guillett
Microsoft MVP Excel
SalesAid Software
dguillett1@austin.rr.com |
 |
| |
VB code - Bob Phillips |
29-Jan-08 11:46:54
|
Use conditional formatting.
Select the cells, say B2:F2, and then Format>Conditional Formatting.
Set Condition 1 set to Formula Is, and a formula of =B2=TODAY(), and set a
pattern colour.
--
---
HTH
Bob
(there's no email, no snail mail, but somewhere should be gmail in my addy) |
 |
| |
VB code - @Homeonthecouch |
29-Jan-08 01:15:11
|
Lets say in cell B1 I want to enter Monday
B1 Monday
B2 Tuesday
B5 Wednesday
B7 Thursday
B8 Friday
These will be input manually and can differ.
I want to make the cell colour change according to the actual day.
I have a VB script that controls the cells according to what is input
e.g..
Case Is = "PT", "pt": .Interior.ColorIndex = 15
Hope that explains it a little better?
Andrew
A bit more detail would be helpful
--
Don Guillett
Microsoft MVP Excel
SalesAid Software
dguillett1@austin.rr.com |
 |
| |
VB code - Bob Phillips |
30-Jan-08 05:55:04
|
Conditional formatting as I said with a formula of
=B2=TEXT(TODAY(),"dddd")
--
---
HTH
Bob
(there's no email, no snail mail, but somewhere should be gmail in my addy) |
 |
| |
VB code - @Homeonthecouch |
30-Jan-08 03:10:58
|
Oooohhh clever !!!
I like that Bob.
Thank you very much.
Andrew
Conditional formatting as I said with a formula of
=B2=TEXT(TODAY(),"dddd")
--
---
HTH
Bob
(there's no email, no snail mail, but somewhere should be gmail in my addy) |
 |
| |