IF data question

NyxieMoon

New Member
Joined
Jan 31, 2018
Messages
10
Is there a formula where:

There is a drop down menu in column A, let's say the menu is Earrings, Necklace, and Rings. And depending on what the user selects, (Rings) I want column B to turn red. Once they enter in their ring size in column B (not a selection, they type it in) I want that cell to turn back white.

Is that possible? I can get create something that turns column B red depending on column A's answer, however it says TRUE and the formula is in column B and I want an answer there.

Any help would be great and much appreciated! Thank you!
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
Welcome to the Board!

To change colors like that, you would use Conditional Formatting.
So, if you had wanted to highlight cell B1 red if A1 is "Rings" and B1 is blank, then you would use this Conditional Formatting formula:
Code:
=AND(A1="Rings",B1="")
and then select the red color format option.
 
Last edited:
Upvote 0
You are welcome!

Glad I was able to help.:)
 
Upvote 0

Forum statistics

Threads
1,215,639
Messages
6,125,968
Members
449,276
Latest member
surendra75

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