+ Reply to Thread
Results 1 to 3 of 3

How to sum one number each 24 lines

Hybrid View

  1. #1
    Registered User
    Join Date
    03-13-2015
    Location
    Lisbon
    MS-Off Ver
    Office 365
    Posts
    2

    How to sum one number each 24 lines

    Hi!
    I have hourly data through an entire year in columns, so in every line i have a different hour of a day. but i want to make another column to introduce the number of the day of the year that where we stand.
    It is a bit difficult to explain, so i'll try to give an example-> For 4th March, i have:
    Hour Data Number of the day
    1 67 63
    2 500 63
    3 444 63
    4 567 63
    ... ... ...
    (the last column is what i want - 4th March = 31+28+4=63th day of the year)
    So, what i want is some form of summing one day each 24 lines, so that in the Hour '1' on the 5th of March i would have 64 in the last column.

    Thank you!

  2. #2
    Forum Contributor
    Join Date
    06-11-2014
    MS-Off Ver
    Office 2003, 2007 & 2010
    Posts
    119

    Re: How to sum one number each 24 lines

    If you have the numbers 1 to 8760 (number of hours in a normal year) in column A then you could use the following but your data would have to start in row 2 to allow the lookup of the number in the previous row. This will just increment the number by 1 every time it reaches 24 hours.

    =MAX(IF(A2/24=INT(A2/24),D1+1,D1),1)
    If you do not have the numbers in the cells then I would use the following which will use the row number as the 1 to 8760. This will just increment the number by 1 every time it reaches 24 hours.

    MAX(IF(row(a2)/24=INT(row(a2)/24),D1+1,D1),1)
    If you have the date or time in the sheet it would be an easier formula. Let me know either way
    Last edited by AranDG; 03-13-2015 at 07:44 AM. Reason: incorrect wrap

  3. #3
    Registered User
    Join Date
    03-13-2015
    Location
    Lisbon
    MS-Off Ver
    Office 365
    Posts
    2

    Re: How to sum one number each 24 lines

    Thank you!!

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Number lines disregarding blank lines
    By eloureiro in forum Excel Formulas & Functions
    Replies: 8
    Last Post: 03-03-2013, 01:14 PM
  2. [SOLVED] Insert blank lines to make the total number of lines 67
    By raghuprabhu in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 06-29-2012, 07:34 AM
  3. creATING NUMBER OF LINES FROM ONE NUMBER
    By rikapple in forum Excel General
    Replies: 2
    Last Post: 11-23-2007, 04:18 PM
  4. number VBA lines
    By leevi in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 07-03-2007, 02:43 AM
  5. Replies: 1
    Last Post: 02-03-2005, 10:06 PM

Tags for this Thread

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