Formula ?

N

natei6

Hello To All,

=IF(SUM(_X16+_X38 )<17,1,SUM(_X16+_X38 )/15),IF(SUM(_X16,_X38)<1,"")

This formula is returning a #value error. The result I am seeking is
If SUM(_X16+_X38 ) is 0, "" else between 1 and 16, 1 else more than 1
SUM(_X16+_X38 )/15. What am I doing wrong?

Thanks In Advance,

Nathan Sargean
 
M

Michael

Hi Natei6
Try this:

=IF(SUM(X16+X38)=0,"",IF(AND(X16+X38<17,X16+X38>1),1,IF
(X16+X38>16,(X16+X38)/15)))

Regards
Michael
 
J

Jerry W. Lewis

Perhaps

=IF(SUM(_X16,_X38)<1,"",IF(SUM(_X16+_X38 )<17,1,SUM(_X16+_X38 )/15))

Jerry
Excel MVP
 

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