View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Kati Kati is offline
external usenet poster
 
Posts: 5
Default Hiding Errors for formulas

Here is an example of the formula:
=+(Data!T3+Data!T4+Data!T5)/((Data!C3+Data!C4+Data!C5)-(Data!AK3+Data!AK4+Data!AK5))
My problem is that I don't have all the data in the datasheet that I am
pulling into the worksheets. The data will consistantly be changing each
month, but because I am setting up the formula for someone else, they want to
just be able to plug in the data and have the formulas calculate. However
they don't want to see the errors when we don't have the data.
Thanks for the help.
Kati

"T. Valko" wrote:

A generic approach:

=IF(ISERROR(your formula),"",your formula)

If you post an example of your formula we might be able to suggest something
better.

--
Biff
Microsoft Excel MVP


"Kati" wrote in message
...
I am trying to create a workbook with multiple worksheets that utilizes
only
one data sheet and has the formulas already in place so that someone else
can
fill in just the hard data numbers and get the information out of the
formulas. Because it is for a at least a year and we only have 1 months
worth
of data, it is giving me =DIVD/0! errors. Can I hide the error message so
that the formula stays inside each cell but fills when the data sheet is
filled?
Thanks!