Function Correction Help

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have this formula in a cell: =((AG11+AH11)-(X11+Y11))*24*60*60/(AI11-Z11). The result if there is no data is: "#DIV/0!". I would like to have an empty string, 0, or show no value at all if the dependant cells are empty

Is this possible

Thanks,
 
You can add

IF(AI11-Z11=0,"",((AG11+AH11)-(X11+Y11))*24*60*60/(AI11-Z11))

(havent tested it). the 24*60*60 thing seems unneccessary, but hey.




Syd said:
I have this formula in a cell:
=((AG11+AH11)-(X11+Y11))*24*60*60/(AI11-Z11). The result if there is no data
is: "#DIV/0!". I would like to have an empty string, 0, or show no value at
all if the dependant cells are empty.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Function Help!!!! 4
Function help? 6
If with countif or counta 3
If and Countif 2
Excel Need Countifs Formula Help 0
Evaluating more than 30 conditions using a formula 1
Make #Value! error blank 3
Help with formula #value! Error 4

Back
Top