Changing cell color

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How can I change a cell color by using an IF statement

Lets say my value is true, how would I format the equation to change my cell color?

Thanks in advance
 
You can use Conditional Formatting from the Format menu to do
this.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
 
If you are using excel then there is an option as
Conditional Formating(see excel's help).
Programatically:
If value = true then cells(addess).interior.colorindex=5
you can play with this
-----Original Message-----
How can I change a cell color by using an IF statement

Lets say my value is true, how would I format the
equation to change my cell color?
 
Back
Top