+ Reply to Thread
Results 1 to 6 of 6

Sum Problems

  1. #1
    Registered User
    Join Date
    01-24-2007
    Posts
    9

    Sum Problems

    I have a column and I want to add every third cell totaling 36 cells. Excel gives me an error when I select more than 30 individual cells. Any help would be appreciated

    Thanks

    tslayer

  2. #2
    Forum Expert
    Join Date
    09-09-2005
    Location
    England
    MS-Off Ver
    2007
    Posts
    1,500
    Perhaps something like the following

    =SUMPRODUCT((A3:A92)*(MOD(ROW(A3:A92),3)=1))

    you may need to change the range you wish to sum eg a3:a92, and the =1 bit may be =0 or =2 depending which cells you wish to sum

    Regards

    Dav

  3. #3
    Forum Expert
    Join Date
    12-23-2006
    Location
    germany
    MS-Off Ver
    XL2003 / 2007 / 2010
    Posts
    6,326
    Some ideas here :
    http://www.cpearson.com/excel/excelF.htm#SumEveryNth
    Beware, they are array formulas !

  4. #4
    Registered User
    Join Date
    01-24-2007
    Posts
    9

    Could Still Use Help With Sum Problem

    Thanks For Replying.

    Just getting back to this. Cannot get this to work. I have attached a file.

    I need to add cell C10, C14, C18 and so on... 36 cells total.

    I will then need to do the same for C11, C15, C19 etc..

    Thanks again, excellent forum.

    Tslayer
    Attached Files Attached Files

  5. #5
    Forum Moderator davesexcel's Avatar
    Join Date
    02-19-2006
    Location
    Regina
    MS-Off Ver
    MS 365
    Posts
    13,486
    you zipped a word doc, why not zip an xl workbook??

  6. #6
    Forum Expert Paul's Avatar
    Join Date
    02-05-2007
    Location
    Wisconsin
    MS-Off Ver
    2016/365
    Posts
    6,885
    Try these formulas:

    To count cells A10, A14, A18, etc. for 36 entries use:
    =SUM(IF(MOD(ROW($A10:$A150)-2,4)=0,$A10:$A150,0))

    To count cells A11, A15, A19, etc. for 36 entries use:
    =SUM(IF(MOD(ROW($A11:$A151)-3,4)=0,$A11:$A151,0))

    To count cells A12, A16, A20, etc. for 36 entries use:
    =SUM(IF(MOD(ROW($A12:$A152),4)=0,$A12:$A152,0))

    To count cells A13, A17, A21, etc. for 36 entries use:
    =SUM(IF(MOD(ROW($A13:$A153)-1,4)=0,$A13:$A153,0))

    ** These are all ARRAY formulas. After typing these formulas in you must press CTRL+SHIFT+ENTER to make them work, not just ENTER. **

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1