Data Validation

krosado

New Member
Joined
Jan 27, 2011
Messages
31
I want the cell (and row) to highlight if a specific word on my data validation list is shown.

ex: B3: (validation list: Pending, Cancleation, Proceed)
If "Pending" is chosen, highlight the cell Yellow.

Thanks!
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
Thank you Jeff! I made it work!

Do you know if there is a way to make the formula an or statement? Ex: "Pending" or "Quote" then>>Format
 
Upvote 0
Sure, try...

=OR($B3="Pending",$B3="Quote")

Or you could create a named range on your sheet somewhere and add the words you want to format, then

=MATCH($B3,FmtWords,0)

The named range is called FmtWords

This way you can easily interchange words you want to format or even extend the named range instead of adding a bunch of words to the OR statement
 
Last edited:
Upvote 0

Forum statistics

Threads
1,224,574
Messages
6,179,626
Members
452,933
Latest member
patv

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