+ Reply to Thread
Results 1 to 4 of 4

Sum Last values in a Row

Hybrid View

  1. #1
    Registered User
    Join Date
    02-28-2007
    Posts
    29

    Sum Last values in a Row

    I have rows of data to which I add new values once a week. I want to sum the last 12 values in the row (the sums will be tied to charts).

    I tried =sum(offset(c2,counta(12:12)-12,0,1,-12)), but it doesn't seem right (mostly because it doesn't work).

    Can anyone help?

    Thanks
    JP

  2. #2
    Forum Contributor
    Join Date
    03-13-2005
    Posts
    6,195
    Quote Originally Posted by jpgoeth
    I have rows of data to which I add new values once a week. I want to sum the last 12 values in the row (the sums will be tied to charts).

    I tried =sum(offset(c2,counta(12:12)-12,0,1,-12)), but it doesn't seem right (mostly because it doesn't work).

    Can anyone help?

    Thanks
    JP
    Hi,

    in A1 try something like

    =IF(COUNT(B1:IV1)<12,SUM(OFFSET(B1,0,0,1,12)),SUM(OFFSET(B1,0,COUNT(B1:IV1)-12,1,12)))

    which will count either the first 12 columns (B1: ~~) or the last 12 columns, depending on the number of figures found, it will require that no figure cell be blank.

    hth
    ---
    Si fractum non sit, noli id reficere.

  3. #3
    Registered User
    Join Date
    02-28-2007
    Posts
    29

    Thanks!

    Works perfectly! You've saved me serveral hours of sitting with my head in my hands.

  4. #4
    Forum Contributor
    Join Date
    03-13-2005
    Posts
    6,195
    Quote Originally Posted by jpgoeth
    Works perfectly! You've saved me serveral hours of sitting with my head in my hands.
    good to see it works for you, and thanks for your response

    ---

+ 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