conditional formatting

  • Thread starter Thread starter Dan Rubinsky
  • Start date Start date
D

Dan Rubinsky

Need a magic formula to use in Conditional Format. As soon as I enter
date and if it is the actual date (now()) the cell must be formate
with dark blue and white text. If the date changes the cells in blu
must change to normal cells color.
Perhaps a funtion in format condition is not the solution ... maybe
VBA macro.
Thanks


Dan
(e-mail address removed)
 
Use the condition 1 as a Formula Is , and this formula

=A1=TODAY()

format as required.

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 
try conditional format>formula
=c9=and(c9<>" ",isnumber(c9),c9=today())
 
Bit of overkill isn't it Don?

If it is TODAY, it will be a number, and it won't be space, so it just needs
the one test.

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

Don Guillett said:
try conditional format>formula
=c9=and(c9<>" ",isnumber(c9),c9=today())
 
Hey, if one glass of red wine is good, more is better.

--
Don Guillett
SalesAid Software
(e-mail address removed)
Bob Phillips said:
Bit of overkill isn't it Don?

If it is TODAY, it will be a number, and it won't be space, so it just needs
the one test.

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 
Lol! Can't argue with that.

Bob

Don Guillett said:
Hey, if one glass of red wine is good, more is better.

--
Don Guillett
SalesAid Software
(e-mail address removed)
enter
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top