Results 1 to 10 of 10

How to sum multiple columns that change sizes?

Threaded View

  1. #5
    Registered User
    Join Date
    12-15-2011
    Location
    Charleston, SC
    MS-Off Ver
    Excel 2010
    Posts
    43

    Re: How to sum multiple columns that change sizes?

    I'm still struggling to find a solution to this problem. Not only have I searched here on this forum, but elsewhere on the web. The best I can do is in the code below. However, there is an issue with summing up the second set of numbers as the code loops back up to cell F5 and the issue is compounded as it moves onto the other sets of numbers.

    I'm sure there are some smart people out there that can solve this easily and without using old counter logic.

    Also it would be useful to have a cell at the bottom that provides a Grand Total of all the sums of the columns this code is adding up.

    Sub TotalMultiColumns()
    
        Worksheets("Compare").Activate
        Range("F5").Activate
    
        Do Until ActiveCell = ""
            n = n + ActiveCell.Value
            ActiveCell.Range("A2").Select
        Loop
            ActiveCell.Value = n
            n = 0
            ActiveCell.Offset(2, 0).Range("A1").Select
    
    End Sub
    Attached Files Attached Files

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