help with array formula

p4nny

Board Regular
Joined
Jan 13, 2015
Messages
246
Hi

I would like to add a second "logical test" to the IF statement to add YELLOW. so IF(OR(RED=b3:b10, YELLOW = b3:b10

I've tried SMALL(IF(OR but couldn't get that too work

=INDEX($C$3:$C$10, SMALL(IF("Red"=$B$3:$B$10, ROW($B$3:$B$10)-MIN(ROW($B$3:$B$10))+1, ""), ROW(A2)))

Much appreciated
Anthony
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.

Excel 2010
ABCD
1TRUETRUE
2
4a
Cell Formulas
RangeFormula
D1=SUM(COUNTIF(B3:B10,{"Red","Yellow"}))>0
C1{=OR(B3:B10="Yellow",B3:B10="Red")}
Press CTRL+SHIFT+ENTER to enter array formulas.
 
Upvote 0
Hi, appreciate your help. I'm looking to return corresponding values in C3:C10 hence the INDEX. So the formula I posted works, but I'm looking to add a second condition.

Many thanks
 
Upvote 0
This is just personal preference, It seems wrong to me (though I know it's not really)
when I see x=range..
To me it should be range=x

Anyway, that's just opinion. But I've reversed it in the formula..

Try this.
=INDEX($C$3:$C$10, SMALL(IF(($B$3:$B$10="Red")+($B$3:$B$10="Yellow"), ROW($B$3:$B$10)-MIN(ROW($B$3:$B$10))+1, ""), ROW(A2)))
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,520
Messages
6,120,011
Members
448,935
Latest member
ijat

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