Results 1 to 3 of 3
  1. #1
    Join Date
    Apr 2010
    Posts
    1

    Summing up numbers from diffrent colums

    Hi guys,

    I need your help summing up numbers from different colums.



    I have this:
    Start_Date End_Date y1 y2 y3 y4 y5
    A 1/1/2003 1/1/2008 #s #s #s #s #s
    B 1/1/2004 1/1/2009 #s #s #s #s #s
    C 1/1/2005 1/1/2010 #s #s #s #s #s
    D 1/1/2006 1/1/2011 #s #s #s #s #s

    How can I do this:
    2003 = Ay1
    2004 = Ay2+By1
    2005 = Ay3+By2+Cy1
    2006 = Ay4+By3+Cy2+Dy1
    2007 = Ay5+By4+Cy3+Dy2
    2008 = By5+Cy4+Dy3
    2009 = Cy5+Dy4
    2010 = Dy5

    TOTAL
    Sum1= Ay1
    Sum2= Ay2+By1
    Sum3= Ay3+By2+Cy1
    Sum4= Ay4+By3+Cy2+Dy1
    Sum5= Ay5+By4+Cy3+Dy2
    Sum6= By5+Cy4+Dy3
    Sum7= Cy5+Dy4
    Sum8=Dy5

    I need to know the total amount per each year. Is this possible?

    Thank you very much.

  2. #2
    ConneXionLost's Avatar
    ConneXionLost is offline Simulacrum
    Windows XP Access 2003
    Join Date
    Jan 2010
    Location
    Victoria, Canada
    Posts
    291
    Deleted duplicate

  3. #3
    ConneXionLost's Avatar
    ConneXionLost is offline Simulacrum
    Windows XP Access 2003
    Join Date
    Jan 2010
    Location
    Victoria, Canada
    Posts
    291
    You should normalize your table like this:

    Code:
    Type	Period	Amount
    
    A	2003	#s
    A	2004	#s
    A	2005	#s
    A	2006	#s
    A	2007	#s
    B	2004	#s
    B	2005	#s
    B	2006	#s
    . . .
    Once done, a simple sum query would provide your answer.

    Cheers,

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Getting a combobox to offer colums
    By Mafukufuku in forum Queries
    Replies: 0
    Last Post: 02-24-2010, 02:43 AM
  2. need help with summing a range
    By sundance0000 in forum Access
    Replies: 3
    Last Post: 01-12-2010, 02:12 PM
  3. Replies: 2
    Last Post: 07-15-2009, 04:08 AM
  4. Inserting data in new colums
    By wasim_sono in forum Queries
    Replies: 2
    Last Post: 02-28-2006, 01:11 AM
  5. Summing info in one Sub form to another
    By Mxcsquared in forum Forms
    Replies: 0
    Last Post: 12-14-2005, 11:44 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums