Need Function

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

Guest

I'm new to Excel and need a function that will sum an array if the total is
between 70 and 72.

=SUM(B5:H5)=>70,<=72 ?????
 
I'm new to Excel and need a function that will sum an array if the total is
between 70 and 72.

=SUM(B5:H5)=>70,<=72 ?????

=IF(AND(SUM(B5:H5)>=70,SUM(B5:H5)<=72),SUM(B5:H5),"out of range")


--ron
 

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

Back
Top