+ Reply to Thread
Results 1 to 4 of 4

Changing a series/list of values while maintaining list total and proportionality

Hybrid View

  1. #1
    Registered User
    Join Date
    09-27-2015
    Location
    England
    MS-Off Ver
    Office 2015
    Posts
    2

    Question Changing a series/list of values while maintaining list total and proportionality

    Hi,

    I am working with an old set of pricing tables that I must rework to better match the quantities that are being charged to a given customer.

    I need to change the quantity to better reflect the quantities as they are billed to this customer.

    However, I need to stay as close to the total for the quantity for a given period (column) as well as the proportion of quantities for that given period individually

    What I am looking to achieve is potentially the use of a forumla I am unaware of or macro that will allow me to change a value in a table and then adjust all the remaining values to ensure the total remains the same - while sticking as close to the previous proportions of each value as possible.

    By way of example:

    Original
    A B C D
    1 24 24 22 22
    2 69 69 65 65
    3 70 70 55.5 55.5
    4 98 98 105 105
    5 92 92 62 62
    Total 353 353 309.5 309.5

    Adjusted
    A B C D
    1 29 24 22 22
    2 68 69 65 65
    3 69 70 55.5 55.5
    4 96 98 105 105
    5 91 92 62 62
    Total 353 353 309.5 309.5

    This is just a basic idea but hopefully you understand the principle. Obviously sticking *exactly* to the total is a bit of wishful thinking as the set of values get larger (trust me, it does!) but I'm hoping the principle will alow me to apply this across the entire spreadsheet and still come out with a value relatively close to what I started with but much more representative values.

    If you have any other queries please let me know. Thanks!

  2. #2
    Forum Expert mrice's Avatar
    Join Date
    06-22-2004
    Location
    Surrey, England
    MS-Off Ver
    Excel 2013
    Posts
    4,967

    Re: Changing a series/list of values while maintaining list total and proportionality

    Try pasting this into the Sheet1 tab of the VBA editor (Alt F11).

    Private Sub Worksheet_Change(ByVal Target As Range)
    Dim Cell As Range
    Dim Cell2 As Range
    Dim DataRange As Range
    Dim VOld
    Dim VNew
    Dim Difference
    
    Set DataRange = Range("A1:D5")
    
    
    For Each Cell In Target
        If Intersect(Cell, DataRange) Is Nothing = False Then
            
            VNew = Cell.Value
            Application.EnableEvents = False
            Application.Undo
            VOld = Cell.Value
            Cell = VNew
            Application.EnableEvents = True
            
            Difference = VNew - VOld
            
            For Each Cell2 In DataRange.Columns(Cell.Column).Cells
                If Cell2.Address <> Cell.Address Then
                    Application.EnableEvents = False
                    Cell2 = Cell2 - Difference / (DataRange.Columns(Cell.Column).Cells.Count - 1)
                    Application.EnableEvents = True
                End If
                
            Next Cell2
        End If
    Next Cell
    End Sub
    This should alter values in the same column to keep the same total by splitting the difference between them.
    Martin

  3. #3
    Registered User
    Join Date
    09-27-2015
    Location
    England
    MS-Off Ver
    Office 2015
    Posts
    2

    Re: Changing a series/list of values while maintaining list total and proportionality

    Hi,

    Thanks for this.

    Can I ask - does this preserve some of the proportionality of each element of the list or split the difference equally? Thanks.

  4. #4
    Forum Expert mrice's Avatar
    Join Date
    06-22-2004
    Location
    Surrey, England
    MS-Off Ver
    Excel 2013
    Posts
    4,967

    Re: Changing a series/list of values while maintaining list total and proportionality

    As written, it splits the difference evenly between the remaining items in the column.

    For a proportional change you could try something like

    Private Sub Worksheet_Change(ByVal Target As Range)
    Dim Cell As Range
    Dim Cell2 As Range
    Dim DataRange As Range
    Dim Total
    Dim VOld
    Dim VNew
    Dim Difference
    Dim Factor
    
    Set DataRange = Range("A1:D5")
    
    
    For Each Cell In Target
        If Intersect(Cell, DataRange) Is Nothing = False Then
            
            VNew = Cell.Value
            Application.EnableEvents = False
            Application.Undo
            VOld = Cell.Value
            Cell = VNew
            Application.EnableEvents = True
            
            Difference = VNew - VOld
            For Each Cell2 In DataRange.Columns(Cell.Column).Cells
                If Cell2.Address <> Cell.Address Then
                    Total = Total + Cell2
                End If
            Next Cell2
            Factor = (Total - Difference) / Total
            
            For Each Cell2 In DataRange.Columns(Cell.Column).Cells
                If Cell2.Address <> Cell.Address Then
                    Application.EnableEvents = False
                    Cell2 = Cell2 * Factor
                    Application.EnableEvents = True
                End If
            Next Cell2
        End If
    Next Cell
    End Sub

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] How to join values to changing list?
    By ranuc in forum Excel General
    Replies: 1
    Last Post: 08-10-2014, 12:47 PM
  2. Allocate values from a list based on a total
    By dylanbaxter in forum Excel General
    Replies: 1
    Last Post: 02-05-2014, 09:14 PM
  3. Need to list all values that begin with a certain series of numbers
    By Jlabombard in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 10-12-2012, 03:29 PM
  4. Replies: 3
    Last Post: 05-31-2012, 01:44 PM
  5. Replies: 4
    Last Post: 05-06-2009, 03:41 PM
  6. Find which values in a list add up to a given total
    By moredo in forum Excel General
    Replies: 3
    Last Post: 05-10-2007, 05:02 AM
  7. Changing Values of a list
    By donw13 in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 11-06-2005, 10:25 PM

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