IFERROR, INDEX, MATCH - output help

cmerrick

Board Regular
Joined
Jun 8, 2017
Messages
78
Office Version
  1. 365
Platform
  1. Windows
I have a formula that uses an IFERROR, an INDEX and a MATCH formula at once.

I want to change the output value of the MATCH so if a MATCH is found it outputs a 'YES' rather than the value that is being looked for.

Formula is below;

=IFERROR(INDEX('[Management Db 1.1.xlsm]Data'!$C$3:$C$10000,MATCH($A4,'[Management Db 1.1.xlsm]Data'!$E$3:$E$10000,0),MATCH(F$3,'[Management Db 1.1.xlsm]Data'!$C$3:$C$10000,0)),0)

The output is currently set to 'MARCH' and it's basically checking to see if the word MARCH has been written in another document in a certain range. Instead of returning MARCH if it's detected I want it to say 'YES'.

Is it possible with this formula or do I need a new formula?

Thanks
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
The easiest way is to wrap your formula with an IF. Try this:

=IF(your formula=0, 0, "yes")
 
Upvote 0

Forum statistics

Threads
1,216,816
Messages
6,132,867
Members
449,761
Latest member
AUSSW

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