Macro to calculate values to hit a certain limit / target

y3kesprit

Board Regular
Joined
Mar 23, 2010
Messages
133
Hi all,

Per below example, how can I design a macro that when clicked, will calculate the values in Column D, such that the current percentage reaches 50%.

In below example, to achieve 50%, the sum in Column B should be 15/30, meaning I am lacking 6 hours (from the existing 9 hours). The macro should thus run, and calculate that these 6 hours should be allocated to the Person A. Note that the maximum hours allocated is subject to the maximum of the value in Column C. If the limit is reached (e.g. 8 for Person A), it should go on to the next row to determine how much additional to hit the current percentage of 50%

--------------------------

Current Percentage: 30% [ (sum of Row A + Row D) / sum of Row D]

(A)
(B)
(C)
(D)
Name
Actual Hours
Maximum Hours
Differential (B) – (A)
Calculation Logic
Person A
2
10
8

Person B
3
10
7

Person C
4
10
6

Total
9
30
-
-


9/30 = 30%



<tbody>
</tbody>
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
Why a macro when a simple formula will suffice:

D2: =MEDIAN(B2,C2,B2+Target*C$5-SUM(B2:B$4)-SUM(D$1:D1))


Book1
ABCD
1NameActual HoursMaximum HoursTarget hours
2Person A2108
3Person B3103
4Person C4104
5Total930
6
7Target50%
Sheet1
 
Last edited:
Upvote 0
Please ignore my previous message.

Column D should be showing the maximum hours (per column C), and move on to the next row if the limit is reached and the target % is not achieved.

In your example, its showing 8 hours instead of 10.

Not sure if I'm doing Anything wrong.
 
Upvote 0
Post #1 said that to meet your target, you needed to allocate +6 hrs to poor Person A.

Hours then would be:

A: 8 (i.e. 2+6 extra)
B: 3 (unchanged)
C: 4 (unchanged)

Total = 15
= your target 50% of the maximum 30.

Did you want something different?
 
Upvote 0
Please ignore my previous message again. I meant to say:

No, you are right actually. Sorry, I wasn't looking at it properly.

I have expanded your formula to my actual template, but am encountering some difficulties.

I have inserted the below formula (assuming the columns are H-J, and rows data run from 9 to 27)

=MEDIAN(I9,H9,I9+$C$3*H$28-SUM(I9:I$27)-SUM(J$8:J8))

In this case, the hours are allocated correctly in total (1042.44) to reach the 73% target. However, the allocation pattern is weird (where I have highlighted in red boxes in the image) For e.g there is one row which is allocated 38.44 instead of 56 hours, or allocated 0 where it should be 72 hours.

Appreciate your support on this!
7PGE5Ho.png
 
Last edited:
Upvote 0
... However, the allocation pattern is weird ...

The allocation pattern follows my understanding of your description in Post 1:

Target is 73% x 1,428 = 1,042.44 hours, so you need to allocate an additional 1,042.44 - 848 = 194.44 hours.

This is allocated successively down the list of people:
+76 in row 17
+80 in row 18
+38.44 in row 20.
= 194.44, therefore = end of allocation.

Perhaps you wanted something different? If so, how should the allocation have been made?
 
Upvote 0

Forum statistics

Threads
1,214,851
Messages
6,121,931
Members
449,056
Latest member
denissimo

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