The best way is to stop the error at the source, where the initial error condition is produced. Errors tend to multiply, since cells that refer to an error show an error, and so on. Often it is just a few cells that are the source of the errors, so if you stop these few from generating errors, you will eliminate all the errors on your sheet.
For example, if you have a few cells that might perform division by zero, you can catch the errors with (assume A1 is the denominator cell that might cause divide-by-zero):
=IF(A1=0,"",<your formula>)
This will return a blank if A1 is zero, or the formula (which divides by A1) if A1 is non-zero.
Let me know if there are specific error-causing situations you need help dealing with.
Greg
REFORMATTED: Stop them at the source
The best way is to stop the error at the source, where the initial error condition is produced. Errors tend to multiply, since cells that refer to an error show an error, and so on. Often it is just a few cells that are the source of the errors, so if you stop these few from generating errors, you will eliminate all the errors on your sheet.
For example, if you have a few cells that might perform division by zero, you can catch the errors with (assume A1 is the denominator cell that might cause divide-by-zero):
=IF(A1=0,"",[your formula])
This will return a blank if A1 is zero, or the formula (which divides by A1) if A1 is non-zero.
Let me know if there are specific error-causing situations you need help dealing with.
Greg