Can I use a named range in the criteria for a sumif?

R

rftmst

I would like to use a test of <RANGENAME in the criteria section of a sumif
function?
 
B

Bob Phillips

There is a very easy way to find out ... try it.


--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
G

Guest

Just concatenate the comparison operator to the range.

=SUMIF(rng1,"<" & rangename,rng2)
 
Top