+ Reply to Thread
Results 1 to 5 of 5

Need formula for a macro function

Hybrid View

Cata_bRc Need formula for a macro... 05-05-2011, 08:03 AM
Domski Re: Need formula for a macro... 05-05-2011, 08:25 AM
inesi Re: Need formula for a macro... 05-05-2011, 08:36 AM
Domski Re: Need formula for a macro... 05-05-2011, 08:40 AM
Cata_bRc Re: Need formula for a macro... 05-06-2011, 03:16 AM
  1. #1
    Registered User
    Join Date
    09-28-2010
    Location
    Romania
    MS-Off Ver
    Excel 2003
    Posts
    15

    Need formula for a macro function

    Hy all
    I have an excel document with 31 sheets (one sheet for every day of this mounth)
    In every sheet I have a table with 2 field: name and value
    I have 3 names Name1, Name2 and Name 3 (I can have multiple Name1, multiple Name2, multiple Name3)
    At the end I have another sheet: Total
    How can I have in the sheet Total the total value for Name1, total value for Name 2, total value for Name3 calculate from the all sheets that I have
    Thank you for all your help




    P.S. sorry for my english

  2. #2
    Forum Expert Domski's Avatar
    Join Date
    12-14-2009
    Location
    A galaxy far, far away
    MS-Off Ver
    Darth Office 2010
    Posts
    3,950

    Re: Need formula for a macro function

    Hi,

    The easiest way (other than keeping all your data on one worksheet which would be recommended) would be to do a SUMIF formula in the same cell on each worksheet and then a 3D SUM formula on your Total sheet adding up those cells =SUM('1:31'!A1)

    Dom
    "May the fleas of a thousand camels infest the crotch of the person who screws up your day and may their arms be too short to scratch..."

    Use code tags when posting your VBA code: [code] Your code here [/code]

    Remember, saying thanks only takes a second or two. Click the little star to give some Rep if you think an answer deserves it.

  3. #3
    Registered User
    Join Date
    05-05-2011
    Location
    Belgium
    MS-Off Ver
    Excel 2007
    Posts
    31

    Re: Need formula for a macro function

    Cata_bRc, your english is fine, don't worry.

    One way you can do that is by using the formula SUMIF. For example:
    1) Let's consider you have three sheets (Sheet1, Sheet2 and Sheet3) and a 4th one called Total

    2) On Sheet1 you have:
    Name | Value
    ABC | 10
    ABC | 20
    DEF | 30
    GHI | 40


    3) On Sheet2 you have:
    Name | Value
    ABC | 10
    DEF | 20
    GHI | 30


    4) On Sheet3 you have:
    Name | Value
    DEF | 10
    GHI | 20


    Then, on sheet Total you can do the following:
    Name | Value
    ABC | =SUMIF(Sheet1!A:A,A2,Sheet1!B:B)+SUMIF(Sheet2!A:A,A2,Sheet2!B:B)+SUMIF(Sheet3!A:A,A2,Sheet3!B:B)
    DEF | =SUMIF(Sheet1!A:A,A3,Sheet1!B:B)+SUMIF(Sheet2!A:A,A3,Sheet2!B:B)+SUMIF(Sheet3!A:A,A3,Sheet3!B:B)
    GHI | =SUMIF(Sheet1!A:A,A4,Sheet1!B:B)+SUMIF(Sheet2!A:A,A4,Sheet2!B:B)+SUMIF(Sheet3!A:A,A4,Sheet3!B:B)


    As you can notice that way will required one SUMIF for each sheet on your workbook.

    As an alternative you could put all 31 Sheets in a single one (columns: Day, Name, Value) and use a very powerful Excel tool called Pivot Table.

  4. #4
    Forum Expert Domski's Avatar
    Join Date
    12-14-2009
    Location
    A galaxy far, far away
    MS-Off Ver
    Darth Office 2010
    Posts
    3,950

    Re: Need formula for a macro function

    Here's any example workbook.

    Dom
    Attached Files Attached Files

  5. #5
    Registered User
    Join Date
    09-28-2010
    Location
    Romania
    MS-Off Ver
    Excel 2003
    Posts
    15

    Re: Need formula for a macro function

    Thank you very very much!
    You have been very helpful!

+ 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