hiding an error value, using INDEX/MATCH

M

mariekek5

Hi,

I am using the INDEX/MATCH combination to look for data in some source
files. In case a value is missing the formula will return an error value":
#N/A. I know it is possible to hide the error values using =IF(ISERROR)….etc.

I just don’t get it right in combination with the INDEX/MATCH function I am
currently using.

I am using:

=INDEX(array;row_num;column_num)

An example:

=INDEX('D:\Marieke Test\TEST BESTANDEN\[TEST
PROTECTION.xls]Sheet1'!$A$1:$AD$418;MATCH(E3;'D:\Marieke Test\TEST
BESTANDEN\[TEST
PROTECTION.xls]Sheet1'!$R$1:$R$418;0);MATCH("merkstam*";'D:\Marieke Test\TEST
BESTANDEN\[TEST PROTECTION.xls]Sheet1'!$A$1:$AD$1;0))

Can somebody tell me how to incorporate the IF(ISERROR)…so that if the
formula would return an error value, instead it will show a blank in that
cell?

Thanks a lot!

Marieke
 
R

Roger Govier

Hi

If you want to use If(Iserror), then the formula construction would be
=IF(ISERROR(your_Formula);"";your_Formula)

If you have XL2007, you would use
=IFERROR(your_Formula,"")
 
B

Bernard Liengme

=IF(ISERROR(your-formula),"", your-formula
That is a pair of double-quotes with nothing between them

But it is easier in Excel 2007
IFERROR(your-formula, "")

best wishes
 
J

Jacob Skaria

=IF(ISNA(<match formula>),"",<index with match formula>)

or in other words
If no match found blank; otherwise go with the INDEX

If this post helps click Yes
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top