How do I distribute a new total budget amount proportionally to the nearest thousandth?

carolinemarie

New Member
Joined
Dec 9, 2022
Messages
1
Office Version
  1. 365
Platform
  1. Windows
I'm trying to solve a problem for work and I'm wracking my brain on how to do it.
Here's the background. I have 10 campaigns each varying in a percentage of the total budget. The client is reducing the budget by $1,700 for the next quarter. I could subtract each of the 10 budgets by $170 or I could take the campaign percentage of the new total budget but the problem is each budget results in an exact number instead of a number rounded to the nearest thousandth like the original number.

Here's the an example of what I mean in excel:
Screenshot 2022-12-10 000507.png


It doesn't have to be the exact percentage of the original campaign- as long as it's somewhat near it. How would I distribute the new total budget to the nearest thousandth across the 10 campaigns- in close range of the original percentage?

I should also note, I get in some circumstances, rounding to the nearest hundredth might be necessary to sum up to the total budget, like in F6, but the general preference is to have the budget to the nearest thousandth.

I appreciate any help!
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
I presume something like this

=CEILING(B1,100)
 

Attachments

  • output.PNG
    output.PNG
    17.7 KB · Views: 12
Upvote 0
T202212a.xlsm
ABCDEFGHIJKLM
6Budget45,00015,00045,00014,70020,00027,0003,00010,00010,00010,000199,700
744,60014,90044,60014,60019,80026,8003,0009,9009,9009,900198,000
8
2e
Cell Formulas
RangeFormula
M6:M7M6=SUM(C6:L6)
C7:L7C7=ROUND(198000/199700*C6,-2)


T202212a.xlsm
BCDEFGHIJKLM
6Budget45,00015,00045,00014,70020,00027,0003,00010,00010,00010,000199,700
71,00001,00000000002,000
844,00015,00044,00014,70020,00027,0003,00010,00010,00010,000197,700
2e
Cell Formulas
RangeFormula
M6:M8M6=SUM(C6:L6)
C7:L7C7=CEILING((MAX($C$6:$L$6)=C6)*0.5*$C$3,1000)
C8:L8C8=C6-C7
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,528
Messages
6,120,065
Members
448,941
Latest member
AlphaRino

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top