I have a spreadsheet that contains duplicate lookup values that are not allowing me to pull the correct data. I've attached an example.
Is there a way--without using a pivot table--to pull the correct information from the second lookup value?
I have a spreadsheet that contains duplicate lookup values that are not allowing me to pull the correct data. I've attached an example.
Is there a way--without using a pivot table--to pull the correct information from the second lookup value?
Last edited by mythbit; 04-06-2015 at 05:54 PM.
Maybe this
in H3
=IFERROR(INDEX(D:D,AGGREGATE(15,6,ROW(B3:E4)/(($B$3:$B$4=G3)*($E$3:$E$4=TRUE)),ROWS(I$3:I3))),"")
Row\Col B C D E F G H 2Lookup Number Bid Amount lookup return testCriteria Return 3 14-0555 $171,057.00 $171,057.00 TRUE 14-0555 171,057.00 4 14-0555 $49,800.00 $171,057.00 FALSE
If you like my answer please click on * Add Reputation
Don't forget to mark threads as "Solved" if your problem has been resolved
"Nothing is so firmly believed as what we least know."
--Michel de Montaigne
Thanks AlKey
Is there a way to bring up the 'Bid Amount' value from cell C4 if false? I'm trying to do a lookup that brings me the correct 'Bid Amount', so for example for cell B3 it is $171,057 and for cell B4 it would be $49,800. The index/match formula keeps bringing up the value from B3 into D4.
I'm a little new to this so my apologies if my explanation is not clear.![]()
Last edited by mythbit; 04-07-2015 at 08:37 AM.
Yes, use the same formula and replace TRUE with FALSE.
=IFERROR(INDEX(C:C,AGGREGATE(15,6,ROW($B$3:$E$4)/(($B$3:$B$4=G3)*($E$3:$E$4=FALSE)),ROWS(I$3:I3))),"")
Last edited by AlKey; 04-07-2015 at 08:54 AM. Reason: Updated formula
See updated INDEX range.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks