T
Tiziano
I use these two methods in order to avoid the #N/A error message in a
VLOOKUP formula:
=IF(ISERROR(VLOOKUP(value,array,index,FALSE)),0,VLOOKUP(value,array,index,FA
LSE))
or
=IF(ISNA(VLOOKUP(value,array,index,FALSE)),0,VLOOKUP(value,array,index,FALSE
))
The problem with these two methods is that VLOOKUP is executed twice,
thus things get slowed down quite a bit in a large table array. Does anyone
have a better solution?
Thanks.
VLOOKUP formula:
=IF(ISERROR(VLOOKUP(value,array,index,FALSE)),0,VLOOKUP(value,array,index,FA
LSE))
or
=IF(ISNA(VLOOKUP(value,array,index,FALSE)),0,VLOOKUP(value,array,index,FALSE
))
The problem with these two methods is that VLOOKUP is executed twice,
thus things get slowed down quite a bit in a large table array. Does anyone
have a better solution?
Thanks.