» Summing A Dynamic Range of Numbers According To Criteria
CATEGORY - Summing
VERSION - All Microsoft Excel Versions
Column A contains an ascending list of numbers.
How could we create a formula that will sum up all the numbers in column A larger than 2,
and will automatically update the result upon the addition of numbers to the list?
Solution:
Use the MATCH, COUNTIF and OFFSET functions, in the following SUM formula:
=SUM(OFFSET(A2,MATCH(C2,A2:A10,0),0,COUNTIF(A2:A10,"">""&C2)))
List1
0
1
2
3
8
First number to sum___2
Result________________11

Book Store:
Recommended Books:
- The Sweet Potato Queens' Big-Ass Cookbook and Financial Planner
- Absolute Beginner's Guide to Microsoft Office Excel 2003
- Managing by the Numbers: A Commonsense Guide to Understanding and Using Your Company's Financials: An Essential Resource for Growing Businesses
- Understanding Financial Statements
- Personal Finance for Dummies
- Rich Dad, Poor Dad: What the Rich Teach Their Kids About Money--That the Poor and Middle Class Do Not!
look at the screen shot
neko
if you check out the screen shot, c2 is where the "2" comes from.


=SUMIF(A2:A10,">2",A2:A10)
It seems as if the problem statement omits some vital information. What role does C2 have in all this?