multiple index(match with ISERROR

Kmitchell

Active Member
Joined
Feb 27, 2007
Messages
361
Office Version
  1. 365
Platform
  1. Windows
Hello,

I have a multiple index(match that works but I would like to add an IF(ERROR on the first condition so that I can eliminate the #NAs .

INDEX('HOA-HOS'!$E$8:$E$12508,MATCH('3.Claim Line Detail O vs F'!$S4,'HOA-HOS'!$B$8:$B$12508,0))*INDEX('FS INFLATORS'!$D$2:$D$3,MATCH('3.Claim Line Detail O vs F'!$G4,'FS INFLATORS'!$C$2:$C$3,0))

If the first index(match is not found on HOA/HOS then "Not on Fee schedule", otherwise give me the rate identified. Part 2 of the index(match is the multiplier.

Please advise.

Thanks kindly!
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
Something like:

=IF(ISNUMBER(MATCH('3.Claim Line Detail O vs F'!$S4,'HOA-HOS'!$B$8:$B$12508,0)),INDEX('HOA-HOS'!$E$8:$E$12508,MATCH('3.Claim Line Detail O vs F'!$S4,'HOA-HOS'!$B$8:$B$12508,0))*INDEX('FS INFLATORS'!$D$2:$D$3,MATCH('3.Claim Line Detail O vs F'!$G4,'FS INFLATORS'!$C$2:$C$3,0)),"Not on Fee schedule")
 
Upvote 0

Forum statistics

Threads
1,214,832
Messages
6,121,843
Members
449,051
Latest member
excelquestion515

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