Conditional Format, Inserting a Word

petiteshiraz

Board Regular
Joined
May 16, 2005
Messages
145
Within a cell, I have the following as a conditional format rule:

=OR(B3<>"",C3<>"")

I've modified it so that if this argument is true, the color of the cell is orange.

How do I change it so that it also writes within the cell the word "OPEN" ??
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
I don't think you can input text to a cell using conditional formating however you could use a formula in the cell.

Code:
=IF(OR(B3<>"",C3<>""), "Open", "")
 
Upvote 0
With your conditional formatting, also set up conditional number format as well.

If you have the cell orange, also set it up so that there is a number in that cell, say 0. Then modify your conditional formatting to include a Number Format > Custom > "True"

Make sure the text is set to black (or whatever) so that when it's true, it will stand out, and when it's false, it will be 0, but it will blend in the background.

Conditional formatting will override manual formatting, so use that to your advantage.
 
Upvote 0

Forum statistics

Threads
1,224,505
Messages
6,179,153
Members
452,891
Latest member
JUSTOUTOFMYREACH

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top