If/Then with text in a column

mlagorio

New Member
Joined
Apr 3, 2013
Messages
3
I have a very simple column of text which is a result of some if functions. Now I want to choose one word depending on the condition. My column might look like this depending on the condition of the input.


red
green
green
yellow
yellow

How can I have a formula to return:
IF "red" anywhere in the column return red
IF no "red" then check for "yellow" and return yellow.
IF only green then green

Super simple I know, but I'm stuck.

Thanks

Michele
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Welcome to the forum! Try,

=IF( ISERROR(MATCH("red", A:A, 0)), IF( ISERROR(MATCH("yellow", A:A, 0)), IF( ISERROR(MATCH("green", A:A, 0)), "", "green"), "yellow"), "red")

With the values being in Column A for this example.
 
Upvote 0
I have a very simple column of text which is a result of some if functions. Now I want to choose one word depending on the condition. My column might look like this depending on the condition of the input.


red
green
green
yellow
yellow

How can I have a formula to return:
IF "red" anywhere in the column return red
IF no "red" then check for "yellow" and return yellow.
IF only green then green

Super simple I know, but I'm stuck.

Thanks

Michele

Oh My Gatos! You are the BEST!
Spent 2 daze (LOL) on this and now it's solved
Thank you Thank you Thank you
 
Upvote 0

Forum statistics

Threads
1,214,978
Messages
6,122,549
Members
449,089
Latest member
davidcom

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