require a change in formula

S

Sathisc

Hi,

I am currently using a formula
=IF(I11<TIME(14,0,0),100%,0%) find the the % and whether the job is
done before 14:00

problem is when i dont enter any data also it shows 100% which is
affecting my chart. I need the formula to calculate only when i enter
data in the relevant field.

can any one help me in this issue.
 
R

RagDyeR

Try this:

=IF(AND(I11<>"",I11<TIME(14,0,0)),100%,0%)
--

HTH,

RD
=====================================================
Please keep all correspondence within the Group, so all may benefit!
=====================================================



Hi,

I am currently using a formula
=IF(I11<TIME(14,0,0),100%,0%) find the the % and whether the job is
done before 14:00

problem is when i dont enter any data also it shows 100% which is
affecting my chart. I need the formula to calculate only when i enter
data in the relevant field.

can any one help me in this issue.
 
F

Fred Smith

Try it this way:

=if(i11="","",if(i11<time(14,0,0),100%,0%))

or, shorter:
=if(i11="","",if(i11<--"14:00",1,0))

Regards,
Fred.
 

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