Today, I want to share a really useful time-saving macro with you. It’s a macro to apportion a value across cells. Now that I’ve written it, I’m starting to gain the benefits, and hopefully, you can too.
Download the example file
I recommend you download the example file for this post. Then you’ll be able to work along with examples and see the solution in action, plus the file will be useful for future reference.
Download the file: 0005 Apportion value across cells.zip
When to use the macro?
Let’s say you’ve got a list of individual items, which add up to $210. Your boss wants to add an additional $21 for contingency. How are you going to make the total equal $231? There are a few options:
- Add an adjustment line with +$21
- Identify specific lines which can be increased to achieve the $231 total
- Spread the $21 increase equally across all the cells
- Apportion the $21 increase across each line item so that each item receives a fair proportion.
The VBA code below addresses the fourth option. You could do this manually using formulas, which would be time-consuming. Instead, the VBA method below takes just 2 seconds.
The VBA code
Enter the following code into a standard module.
Sub ApportionValueAcrossCells() Dim apportionValue As Double Dim keepAsFormula As Long Dim total As Double Dim c As Range Dim formulaString As String 'Get the existing total total = Application.WorksheetFunction.Sum(Selection) 'Check that sum of selected cells is not zero If total = 0 Then MsgBox Prompt:="Selected cells must not sum to zero", _ Title:="Apportion value" Exit Sub End If 'Get the value to apportion apportionValue = Application.InputBox(Prompt:="Value to apportion:", _ Title:="Apportion value", Type:=1) 'The User clicked Cancel If apportionValue = False Then Exit Sub 'Get the boolean value to keep the formula or hardcode the result keepAsFormula = MsgBox("Keep formula?", vbYesNo) 'Loop through each cell in selection For Each c In Selection If IsNumeric(c.Value) Then 'Calculate the result of the cell formulaString = c.Formula & "+(" & apportionValue & _ "/" & total & "*" & c.Value & ")" If Left(formulaString, 1) <> "=" Then _ formulaString = "=" & formulaString 'Enter the formula into the cell c.Formula = formulaString 'Recalculate the active cell ActiveCell.Calculate 'If keepAsFormula is no, then hardcode the result If keepAsFormula = vbNo Then c.Value = c.Value End If End If Next c End Sub
How to use the code
To use the macro, follow these steps:
-
- Select the cells which contain the current values
- Run the macro
- An Input Box will appear, enter the value you wish to adjust the total by, then click OK
- A message box will appear. The macro can either paste the new values or include the formula. Click on the button with your preference.
- Ta-dah! The values will be updated. The 21 has now been apportioned across all the cells according to their original value.
- Select the cells which contain the current values
Help me improve the macro
I’ve written this code to operate the way that I work and to meet my needs. However, maybe you work differently, maybe you can think of some improvements, or maybe you have a different way to apportion a value across cells. If so, please include your thoughts in the comments section below.

About the author
Hey, I’m Mark, and I run Excel Off The Grid.
My parents tell me that at the age of 7 I declared I was going to become a qualified accountant. I was either psychic or had no imagination, as that is exactly what happened. However, it wasn't until I was 35 that my journey really began.
In 2015, I started a new job, for which I was regularly working after 10pm. As a result, I rarely saw my children during the week. So, I started searching for the secrets to automating Excel. I discovered that by building a small number of simple tools, I could combine them together in different ways to automate nearly all my regular tasks. This meant I could work less hours (and I got pay raises!). Today, I teach these techniques to other professionals in our training program so they too can spend less time at work (and more time with their children and doing the things they love).
Do you need help adapting this post to your needs?
I'm guessing the examples in this post don't exactly match your situation. We all use Excel differently, so it's impossible to write a post that will meet everybody's needs. By taking the time to understand the techniques and principles in this post (and elsewhere on this site), you should be able to adapt it to your needs.
But, if you're still struggling you should:
- Read other blogs, or watch YouTube videos on the same topic. You will benefit much more by discovering your own solutions.
- Ask the 'Excel Ninja' in your office. It's amazing what things other people know.
- Ask a question in a forum like Mr Excel, or the Microsoft Answers Community. Remember, the people on these forums are generally giving their time for free. So take care to craft your question, make sure it's clear and concise. List all the things you've tried, and provide screenshots, code segments and example workbooks.
- Use Excel Rescue, who are my consultancy partner. They help by providing solutions to smaller Excel problems.
What next?
Don't go yet, there is plenty more to learn on Excel Off The Grid. Check out the latest posts:
Umm… umm… a setup example that talks about a reduction of the total, followed by an example offers no explanation as to what the numbers mean and it’s about increasing the total. I know what apportioning means, which allows me to make heads and tails out of this article, but, with all due respect, that is not the way of go about that explanation, and it is much unlike your other articles that I have read so far. It seems like the job was delegated at the very last moment to a junior something, and it turned out like what my students who try to do their homework 10 minutes before class turn in.
By the way, and please forgive me, either the boss wants the total to be reduced or the total needs to be reduced (for whatever reason there might be), but not a mix of both. It’s clear that it was an editing error, but for the sake of not confusing those with lesser English skills…
Thanks for the feedback. Unfortunately, it was not delegated, but entirely me. Clearly, I must try harder! 🙂
I have updated the article for some of the comments. This is a ‘code snippet’ article, so I’m not trying to explain how to apportion, I’m trying to provide a piece of code which can achieve it.
Did you try the macro?