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

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
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,225,754
Messages
6,186,827
Members
453,377
Latest member
JoyousOne

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