Probably this has been discussed elsewhere, but I thought I would ask anyway.
Using index/match, what is the cleanest way to handle error values? People don't like to look at #N/A's all over the place so I am considering my options to replace them with blanks " " or 0's.
In the past with Excel 2003 I have used ISERROR the replace #N/A with " " for example:
With Excel 2007 there is the IFERROR function, but I'm not sure if it offers much improvement complexity wise over the ISERROR function. Does anyone have suggestions on simpler ways to handle error values returning from lookup/reference functions? Thank you!
Using index/match, what is the cleanest way to handle error values? People don't like to look at #N/A's all over the place so I am considering my options to replace them with blanks " " or 0's.
In the past with Excel 2003 I have used ISERROR the replace #N/A with " " for example:
Code:
=IF(ISERROR(INDEX(B$3:B$7, MATCH($A$22,$A$3:$A$7,0)))," ",INDEX(B$3:B$7, MATCH($A$22,$A$3:$A$7,0)))
With Excel 2007 there is the IFERROR function, but I'm not sure if it offers much improvement complexity wise over the ISERROR function. Does anyone have suggestions on simpler ways to handle error values returning from lookup/reference functions? Thank you!