Stratify Data In a Range

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

Guest

Hello, I am trying to stratify amounts in a given range of cells into
different tiers.

I have a range of $ values. Lets say from A1:E100 that is filled with
numerical values.

I am trying to summarize this data into tiers, for example
sum of amounts: from 10,000 to 15,000
sum of amounts: from 5,000 to 9,999
sum of amounts: from 0 to 4,999
sum of amounts: from (1) to (4,999)
sum of amounts: from (5,000) to (9,999)
sum of amounts: from (10,000) to (14,999)

How do I do this?
 
typo, i should be
=SUMPRODUCT(--($A$1:$E$100>=A105), --($A$1:$E$100<=B105), $A$1:$E$100)

sorry
 
I'm curious... what is the purpose of the "--" between the two opening
brackets you have in your formula??

I typed my formula: =SUMPRODUCT((Data>=A11)*(Data<=B11),Data)
with "Data" being the Range of cells, and it worked.
 
Back
Top