INDEX MATCH with Final Value Return Change

Morey

New Member
Joined
Sep 24, 2018
Messages
37
Hello all,

If Array/Formula below returns a 2, change return to Released. Is it possible to integrate into formula below?

Code:
=IFERROR(INDEX('PR Report'!U:U,MATCH(A2&B2,'PR Report'!C:C&'PR Report'!E:E,0)),"")


Regards,

Morey
 
I agree with Fluff in that case. Add a sheet with a table of what outcomes should lead to what outcomes and do something like;
IFERROR(VLOOKUP(INDEX(…),
,2,0),"")


Ross,

Below is the formula (return value & lookup table) that I'm using but, it returns a 0. I noticed in your suggestion you use VLOOKUP and INDEX. Is it possible to mix both of them?

Possible to do something more like this? Currently, returns #VALUE .

Code:
=IF(VLOOKUP(A2,'PR Report'!C:Z,19,0),"",(VLOOKUP(K2,List!E:F,2,0)))


Morey
 
Last edited:
Upvote 0

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
Possible to do something more like this? Locked out of editing above message. Forum posting is glitched in IE. Please, ignore above.

Code:
=IFERROR(VLOOKUP(INDEX('PR Report'!U:U,MATCH(A3&B3,'PR Report'!C:C&'PR Report'!E:E,0),"",(VLOOKUP(K2,List!E:F,2,0)))

Morey
 
Last edited:
Upvote 0
Hello All,

Formula/Array below did the trick.

Code:
=IFNA(INDEX(List!F:F,MATCH(INDEX('Report'!$U$1:$U$5000,MATCH(A2&B2,'Report'!$C$1:$C$5000&'Report'!$E$1:$E$5000,0)),List!E:E,0)),"")


Regards,

Morey
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,691
Members
448,978
Latest member
rrauni

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