Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
In summing a column range...say =sum(a$5:a175). If the column is
ever-growing, continually adding to the range, how can I alter the formula to include the new items beyond a175? It doesn't seem logical that I should put in some ridiculously large number which would include a bunch of blank cells. -- Rich D Armstrong Custom Homes Redmond |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
One way where 9999 is any number larger than possible in your column
=SUM(A5:OFFSET(A5,MATCH(9999,A:A),0)) -- Don Guillett Microsoft MVP Excel SalesAid Software "Rich D" wrote in message ... In summing a column range...say =sum(a$5:a175). If the column is ever-growing, continually adding to the range, how can I alter the formula to include the new items beyond a175? It doesn't seem logical that I should put in some ridiculously large number which would include a bunch of blank cells. -- Rich D Armstrong Custom Homes Redmond |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Set logic aside.
=SUM(A$5:A65536) will never fail you. (unless you are using Excel 2007) -- Gary''s Student - gsnu200742 "Rich D" wrote: In summing a column range...say =sum(a$5:a175). If the column is ever-growing, continually adding to the range, how can I alter the formula to include the new items beyond a175? It doesn't seem logical that I should put in some ridiculously large number which would include a bunch of blank cells. -- Rich D Armstrong Custom Homes Redmond |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If A1:A4 contains text (no real numbers!), you could use:
=sum(a:a) if it contains numbers that you don't want included (even dates!): =sum(a:a)-sum(a1:a4) Lots of worksheet functions will limit themselves to the used range--no matter how big you make the range in the formula. Rich D wrote: In summing a column range...say =sum(a$5:a175). If the column is ever-growing, continually adding to the range, how can I alter the formula to include the new items beyond a175? It doesn't seem logical that I should put in some ridiculously large number which would include a bunch of blank cells. -- Rich D Armstrong Custom Homes Redmond -- Dave Peterson |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Your formula doesn't seem to work. If the number is larger than possible n/a
is returned. Could you further elaborate? Please. "Don Guillett" wrote: One way where 9999 is any number larger than possible in your column =SUM(A5:OFFSET(A5,MATCH(9999,A:A),0)) -- Don Guillett Microsoft MVP Excel SalesAid Software "Rich D" wrote in message ... In summing a column range...say =sum(a$5:a175). If the column is ever-growing, continually adding to the range, how can I alter the formula to include the new items beyond a175? It doesn't seem logical that I should put in some ridiculously large number which would include a bunch of blank cells. -- Rich D Armstrong Custom Homes Redmond |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
summing column c based an column a criteria | Excel Worksheet Functions | |||
Summing column and rows | Excel Discussion (Misc queries) | |||
Summing a Column instead of a Column range | Excel Discussion (Misc queries) | |||
Summing one column based on date in another column | New Users to Excel | |||
Summing a column | Excel Worksheet Functions |