G
Guest
can anyone tell me a formula that will sum just the even numbers or the odd
numbers in a range?
numbers in a range?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Test it, more intuitive
=SUMPRODUCT(--(MOD(A1:A6,2)=0),A1:A6)
Pity about ISEVEN
Rick Rothstein (MVP - VB) said:More intuitive? Well, marginally (at least for me). Since I had no trouble
seeing that Bernd's MOD(A1:A6,2) yields 1 when the processed cell is odd
and 0 when it is even, I find no difficulty seeing that subtracting these
values (0 or 1) from 1 reverses the values (they become 1 or 0
respectively) and, hence, their odd/even-ness (it is nothing more than the
principal of toggling a value between 0 and 1 inside a program where the
code line would be Value=1-Value).
I am newly returned to Excel after a very long absence and am puzzled by
this. Why is it that some functions (for example, MOD) can use array
ranges in this way and others (like ISEVEN) can't? Is there some "rule"
governing which function can and cannot?
But what if it were numbers divisible by 3? Try constructing the formula
with your functions, it ain't easy.
But with mine, it is simply
=SUMPRODUCT(--(MOD(A1:A6,3)=0),A1:A6)
Intuitive to get from one to another.
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.