Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
 
Posts: n/a
Default How to indicate in formula to choose the entire column starting from a specified cell?

How would you indicate in a formula for Excel to choose an entire
column? Say, for example I want to sum up all the values in column C
starting from C4?

Also, how would I indicate to Excel to sum up values excluding a few?
Say I want to sum up columns C2 to C12 but not C10 and C5.

Thank you!

  #2   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson
 
Posts: n/a
Default How to indicate in formula to choose the entire column starting froma specified cell?

=sum(C:C)
for the whole column.

=sum(c4:c65536)
for C4 and everything after that.

=sum(c2:c12)-sum(c5,c10)
is one way.

=sum(c2:c4,c6:c9,c11)
is another.

wrote:

How would you indicate in a formula for Excel to choose an entire
column? Say, for example I want to sum up all the values in column C
starting from C4?

Also, how would I indicate to Excel to sum up values excluding a few?
Say I want to sum up columns C2 to C12 but not C10 and C5.

Thank you!


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.misc
Ragdyer
 
Posts: n/a
Default How to indicate in formula to choose the entire column starting from a specified cell?

To choose an *entire* column, you could use:

=SUM(C:C)

But, to sum from C4, you might try:
=SUM(C4:C65536)

You could also try:
=SUM(C2:C12,-C5,-C10)


--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
wrote in message
oups.com...
How would you indicate in a formula for Excel to choose an entire
column? Say, for example I want to sum up all the values in column C
starting from C4?

Also, how would I indicate to Excel to sum up values excluding a few?
Say I want to sum up columns C2 to C12 but not C10 and C5.

Thank you!


  #4   Report Post  
Posted to microsoft.public.excel.misc
 
Posts: n/a
Default How to indicate in formula to choose the entire column starting from a specified cell?

Thanks, skipped my mind to use Excel's finite size limitation.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Help with copying dynamic column selected based on remote cell value and dynamic formula fill ers Charts and Charting in Excel 0 March 1st 06 01:05 AM
Need to Improve Code Copying/Pasting Between Workbooks David Excel Discussion (Misc queries) 1 January 6th 06 03:56 AM
Possible Lookup Table Karen Excel Worksheet Functions 5 June 8th 05 09:43 PM
Formula checking multiple worksheets sonic-the-mouse Excel Worksheet Functions 2 June 5th 05 07:48 PM
GET.CELL Biff Excel Worksheet Functions 2 November 24th 04 07:16 PM


All times are GMT +1. The time now is 03:46 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"