INDEX MATCH FORMULA N/A# ERROR

DeltaShell

New Member
Joined
Jul 29, 2022
Messages
5
Office Version
  1. 2019
Platform
  1. Windows
I would like to have this formula return a "text" word of my choosing instead of N/A# if there is no match - but I can't figure out how to nest the formula within an IFERROR - Can anyone help? :) Thank you in advance!
INDEX($H$2:$H$1496,MATCH(H18,$H$2:$H$1496,0),0)
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
Unable to understand what you are trying to do with this Index Match. Give some data or perspective to understand what you want to do.
 
Upvote 0
The syntax for Iferror is
=IFERROR( value, value_if_error)
your current entire formula replaces the blue value
=IFERROR( INDEX($H$2:$H$1496,MATCH(H18,$H$2:$H$1496,0),0), "Not Found")
 
Upvote 0
You only need a comma or a bracket in the wrong place and it doesn't work. ;)
In case it helps, if you start typing "Iferror(" in front of your existing formula and the click on the word "value" it will show where you are up to.
In the below image it shows you need to add from the comma "," on.

It will also allow you to put in extra spaces to show clearer separation between the components as I have in my post (extra space after the first open bracket and another after the comma of the IFERROR.)

1710993678289.png
 
Upvote 0

Forum statistics

Threads
1,215,073
Messages
6,122,970
Members
449,095
Latest member
Mr Hughes

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