+ Reply to Thread
Results 1 to 7 of 7

Autosum with VBA

  1. #1
    Registered User
    Join Date
    05-04-2009
    Location
    london
    MS-Off Ver
    Excel 2003
    Posts
    33

    Autosum with VBA

    Hi there,

    I need a VBA segment to generate the sum formulas into cells in column A.

    The code would look at each cell in column B (from B1 to the last row with entries in row C eg

    Range("b1:b" & Range("c" & Rows.Count).End(xlUp).Row).Select

    If for example,

    B3 contains "x" then the formula in A3 will be sum(A1:A2);

    B4:B10 are all blank, therefore A4:A10 will be blank;

    B11 has "x" then the formula in A11 will be sum(A4:A10)

    I could do a sumif based on column B, however, data in column B would be discarded upon the completion of the report.

    Thanks in advance. Can't attach the example from work

  2. #2
    Valued Forum Contributor AlvaroSiza's Avatar
    Join Date
    09-19-2007
    Location
    Staffordshire
    MS-Off Ver
    2007
    Posts
    591

    Re: Autosum with VBA

    What is in Column C?
    Perhaps it was the Noid who should have avoided me...
    If you are satisfied with my solution click the small star icon on the left. Thanks
    1. Make a copy of your workbook and run the following code on your copy (just in case)
    2. With excel open, press ALT+F11 to open the Visual Basic Editor (VBE). From the "Insert" menu, select "Module".
    3. Paste the code from above into the empty white space. Close the VBE.
    4. From the developer tab, choose "Macros", select the Sub Name, and click "Run".

  3. #3
    Registered User
    Join Date
    05-04-2009
    Location
    london
    MS-Off Ver
    Excel 2003
    Posts
    33

    Re: Autosum with VBA

    Hi,
    It's lengthy

    The arrangement in column A in the original report is as follow:

    4 blank rows, the 5th will sum the above 4 ie A1:A4 is blank, the formula in A5 is sum(A1:A4). Next, A6:A9 is blank, the formula in A10 is sum(A6:A9).

    The problem is, the users will mess it up each month by deleting/adding rows to the report. Hence, the cells with the sum formulas won't sum properly.

    For example, after the modification, the user sends me the report back with:

    A5 is sum(A1:A4)
    A11 is sum(A7:A10)
    A14 is sum(etc.

    I use column C to flag any cell in column A which contain the word "Sum". Therefore, I will have the following cells in column C with the word "x".

    c5, c11, c14. the other cells in c column will be blank. Thanks.

  4. #4
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200

    Re: Autosum with VBA

    Add a file.
    Hope that helps.

    RoyUK
    --------
    For Excel Tips & Solutions, free examples and tutorials why not check out my web site

    Free DataBaseForm example

  5. #5
    Registered User
    Join Date
    05-04-2009
    Location
    london
    MS-Off Ver
    Excel 2003
    Posts
    33

    Re: Autosum with VBA

    Hi RoyUK,

    I can't attach a file. Let me give you a clearer example. I'll need to look at each cell in column A. If any cell contains "x", corresponding cell in B will have the sum formula to sum the cells above it.

    example:
    A5 has "x", B5 formula is sum(b1:b4)
    A7 has "x", B7 formula is sum(b6:b6)
    a16 has "x", B16 formula is sum(b8:b15)

    if I enter an "x" to cell A13, then run the vba:

    A5 has "x", B5 formula is sum(b1:b4)
    A7 has "x", B7 formula is sum(b6:b6)
    A13 has "x", B13 formula is sum(b8:b12)
    a16 has "x", B16 formula is sum(b14:b15)

    Thanks.
    Last edited by drawing.blanks; 05-15-2012 at 02:34 AM.

  6. #6
    Forum Expert
    Join Date
    07-20-2011
    Location
    Mysore, India.
    MS-Off Ver
    Excel 2019
    Posts
    8,710

    Re: Autosum with VBA

    Pl see the attached file with macro "FomulaInB".
    If your problem is solved mark the thread "SOLVED".
    Attached Files Attached Files

  7. #7
    Registered User
    Join Date
    05-04-2009
    Location
    london
    MS-Off Ver
    Excel 2003
    Posts
    33

    Re: Autosum with VBA

    Hi,

    Thanks for the solution. The sample file works perfectly.

+ 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