Formula to show =>500 but +<1000 in one column

  • Thread starter Thread starter rahji
  • Start date Start date
R

rahji

I can find a formula to calculate one, but not both - can anyone help? Many
thanks.
 
What do you mean to 'show' numbers? add them up?

Try this

=SUMPRODUCT((A1:A20>=500)*(A1:A20<=1000)*(A1:A20))

Mike
 
Your question is open to some interpretation. You may want something like this

=IF(AND(A1>=500,A1<1000),A1,NA())
 
Thanks Mike - I have a list of numbers, and I want to have a total of numbers
over 500 but less than 1000.
 

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