I'm working on a very advance database and need to look at different instances of a column I've simplified it as much as I can using helper columns but still need at least one column of array formulas, but I can't figure out how to write it correctly.
I'm not near my computer so this won't be the exact formula but it is something like
=IFERROR(INDEX(C:C,MATCH(SMALL(D:D="X",ROW(D:D)-ROW(D:D,1)),1,1)),""
Which works, but not sure if that's the actual formula I'm using..
I need one that continues on the if error to look at another column for the X instead so something like
=IFERROR(INDEX(C:C,MATCH(SMALL(D:D="X",ROW(D:D)-ROW(D:D,1)),1,1)),INDEX(C:C,MATCH(SMALL(E:E="X",ROW(E:E)-ROW(E:E,1)),1,1))
Which doesn't work, it still inputs the answer from the first portion of the formula...
It should look in D:D for x and input what is in that row in C:C and if it can't find it look in E:E for an x and input from that row instead.
I'm not near my computer so this won't be the exact formula but it is something like
=IFERROR(INDEX(C:C,MATCH(SMALL(D:D="X",ROW(D:D)-ROW(D:D,1)),1,1)),""
Which works, but not sure if that's the actual formula I'm using..
I need one that continues on the if error to look at another column for the X instead so something like
=IFERROR(INDEX(C:C,MATCH(SMALL(D:D="X",ROW(D:D)-ROW(D:D,1)),1,1)),INDEX(C:C,MATCH(SMALL(E:E="X",ROW(E:E)-ROW(E:E,1)),1,1))
Which doesn't work, it still inputs the answer from the first portion of the formula...
It should look in D:D for x and input what is in that row in C:C and if it can't find it look in E:E for an x and input from that row instead.