+ Reply to Thread
Results 1 to 9 of 9

How to make calculations?

  1. #1
    Registered User
    Join Date
    09-30-2007
    Posts
    11

    How to make calculations?

    I want to simply add the data in cells in one column to the data in another column and show the results in a 3rd column. Column A + column B = Column C.

  2. #2
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    Try Concatenate

    http://www.bettersolutions.com/excel...A114811611.htm
    or just

    =A1&" "&B1

    VBA Noob
    _________________________________________


    Credo Elvem ipsum etian vivere
    _________________________________________
    A message for cross posters

    Please remember to wrap code.

    Forum Rules

    Please add to your signature if you found this link helpful. Excel links !!!

  3. #3
    Registered User
    Join Date
    09-30-2007
    Posts
    11
    Hmm. Don't think concatenate is the right function for what I want. Because I'm a newbie I'm probably making certain assumptions as to how Excel works that may not be true.

    Suppose we're on row 1--on the C column I've entered 3 and in Column D I've entered 2. I want column E (in row 1) to say 5. I'd sorta assumed that Excel would have a rather transparent way to do this but I can't find it.

    I would also want Column E to maintain a running total or balance. That's really all I need to know. Thanks for any input.

    Ken

  4. #4
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    Called Sum

    Try

    =C1+D1

    See link to use sum and sum wizard

    http://www.bettersolutions.com/excel...S342434541.htm

    VBA Noob

  5. #5
    Registered User
    Join Date
    09-30-2007
    Posts
    11
    Quite obvious; but where do you enter this formula? And I don't want just row 1 to do this calculation, but all rows. Would it then just be E=C+D? Seems obvious but I'm having trouble as to how to enter this as a formula on my sheet.

  6. #6
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    but where do you enter this formula?
    I assumed you want to enter in E1

    Suppose we're on row 1--on the C column I've entered 3 and in Column D I've entered 2. I want column E (in row 1) to say 5.
    To sum col C and D enter this in say F1 either by double clicking a cell and start typing or select the cell then type in the formula bar

    Formula Bar = Link

    =SUM(C:D)

    If you want to see each rows formula in a cell enter this in say E1 and enter

    =C1+D1

    and drag down using fill handle

    Fill handle link
    HTH

    VBA Noob

  7. #7
    Registered User
    Join Date
    09-30-2007
    Posts
    11
    Thanx for your input. I will keep working on it and ought to discover more on my own, but right now I just want to know one thing:

    I was able to program using individual cell #s (A1, B4, etc.) but I still don't see how you get whole columns at a time. In other words the function generator doesn't allow only letters. Obviously no one is going to program separately each row...

    Thanx,

    Ken

  8. #8
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    Didn't this work

    =SUM(C:D)

    I was able to program using individual cell #s (A1, B4, etc.) but I still don't see how you get whole columns at a time. In other words the function generator doesn't allow only letters. Obviously no one is going to program separately each row...
    VBA Noob

  9. #9
    Registered User
    Join Date
    09-30-2007
    Posts
    11
    Didn't this work

    =SUM(C:D)
    That's right, when I put that in I get an error.

+ 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