"IF" only I could do this?

M

Meebers

Trying to check two cells to see if either is blank or has the text "n/a" in
them and not do the calculation. Using the formula so far
=IF(OR(F60="",(E60=""))," ",MOD(F60-E60,1)). I am working with time
formated cells 00:00 determining time between events. If I add to the
formula i.e. ,(F60="n/a" Excel says there is an error. TIA
 
D

Dave Peterson

Maybe you could just check for numbers (including times & dates) in both E60 and
F60:

=if(count(f60:e60)<2,"",mod(f60-e60,1))
 
T

T. Valko

both work...continuing to test for exceptions...

There will be no exceptions! <g>

Thanks for the feedback!
 

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

Top