Need Function

  • Thread starter SteveMcDowell19
  • Start date
S

SteveMcDowell19

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 ?????
 
R

Ron Rosenfeld

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
 
Top