Multiple criteria & hlookup formula help

insppiron2007

New member
Joined
Nov 7, 2014
Messages
2
Reaction score
0
Points
0
Hi,
I'm doing some work with my clothing business, and am having trouble getting my head around what the best way of compiling the formula is. My head is telling my its a really simple one - but I just can't think of it - so any help would be much appreciated!
Aim:
If in column A, it says 'Accessories' & if in column B it says 'ffffff', then look for '9' between C1 & AK6 in column C. Then look horizontally for 'M'. Finally, present the value that is 25 rows down from this.

If anyone needs a bit more clarity, please let me know
thanks in advance!
 
This is ridiculously complex, I think you should revisit your design.

This array formula seems to do it

=IFERROR(IF(AND(A1="Accessories",B1="ffffff"),OFFSET(C1,MIN(IF($C$1:$K$6=9,ROW($C$1:$C$6)))+24,MATCH("M",INDEX($C$1:$K$6,MIN(IF($C$1:$K$6=9,ROW($C$1:$C$6))),0),0)-1),""),"Not found")
 
Last edited:
Back
Top