If you are looking to hide all error values, use an if statement. Something like:
=IF(ISERROR("Condition"),"","Value to Return"). If you need any more help let me know.
Regards,
Barrie
If you're look up is dependant on a cell that is to be filled in later, you could also use an if statement. Like if your user is entering something in A1
=IF(A1<>"",lookup(A1,range,col1,false),"")
Barry's is probably better, but this is just the way I normally do it.
good luck
Tom,
It's not a good idea to "suppress" every type of error you can get. I wouldn't recommend hiding/suppressing errors like #DIV/0!, #VALUE!, #NUM!, etc. because these indicate serious problems in the processing involved.
Having said that, you can make use of ISERROR that catches any error:
=IF(ISERROR(f),"",f) where f is the actual formula that does a computation.
If you want to suppress just #N/A which can result from lookup formulas, you can use
=IF(ISNA(lookup-f),"",lookup-f) where lookup-f is the actual lookup formula that you use.
Aladin
Got it. Thank you very much!