Excel 2007 formula help

G

Guest

I need to modify the formula below so that if cell AA6 is blank the result
will be blank. It currenly gives a result of the Min of 2.95.

Thanks in advance.

Steve

=Labor!$A$1*AA6+MIN(MAX(Labor!$A$1*AA6*0.1,2.95 ),24.95)
 
A

aidan.heritage

I need to modify the formula below so that if cell AA6 is blank the result
will be blank. It currenly gives a result of the Min of 2.95.

Thanks in advance.

Steve

=Labor!$A$1*AA6+MIN(MAX(Labor!$A$1*AA6*0.1,2.95 ),24.95)

=if(isblank(AA6),"",Labor!$A$1*AA6+MIN(MAX(Labor!$A$1*AA6*0.1,2.95 ),
24.95) )


should do it for you
 

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