FIFO Aging Simulation
I am trying to simulate a backlog of cases by age.
Assumptions:
FIFO: (First In First Out)
: This means we will always prioritize cases in the4+
bucket then move to the bucket to it's left and so on. This means current dayInflow
has last priority.
Productivity = 1,000 = Constant
: The most that can be worked in a single day is 1,000- Before the simulation begins we have
1'000 aged 1 day
,750 aged 2 days
,500 aged 3 days
, &250 aged 4 days
Given this information, I believe it is possible to input any Inflow and have the buckets complete themselves. I cannot figure out what equations to use to populate the desired result though.
I have tried a series of SUM
, SUMIF
, IF
, and checking if the differences between a bucket and productivity is negative (all unsuccessful).
In Photo, the buckets for each day represent the end of day age of everything. Towards the end, when backlog is cleared, all buckets show 0 since the inflow is less then the productivity I.E. cleared that day and never gets to actually age. The inflow column essentially represents 0 days old
Gray columns are locked
How can I correctly populate the buckets and produce no negatives?
excel excel-formula
add a comment |
I am trying to simulate a backlog of cases by age.
Assumptions:
FIFO: (First In First Out)
: This means we will always prioritize cases in the4+
bucket then move to the bucket to it's left and so on. This means current dayInflow
has last priority.
Productivity = 1,000 = Constant
: The most that can be worked in a single day is 1,000- Before the simulation begins we have
1'000 aged 1 day
,750 aged 2 days
,500 aged 3 days
, &250 aged 4 days
Given this information, I believe it is possible to input any Inflow and have the buckets complete themselves. I cannot figure out what equations to use to populate the desired result though.
I have tried a series of SUM
, SUMIF
, IF
, and checking if the differences between a bucket and productivity is negative (all unsuccessful).
In Photo, the buckets for each day represent the end of day age of everything. Towards the end, when backlog is cleared, all buckets show 0 since the inflow is less then the productivity I.E. cleared that day and never gets to actually age. The inflow column essentially represents 0 days old
Gray columns are locked
How can I correctly populate the buckets and produce no negatives?
excel excel-formula
I'm not clear on your process. On any given day are you "working" the 1000 oldest units?. Do those get removed from the table or do you tote those up somewhere? For the units that don't get worked, do they get carried down one row (to the next day's work) and one column to the right (to give them one more day of aging)?
– xidgel
Nov 20 at 23:31
That all seems correct. On the first day they will work 1000 starting from the right bucket and keep moving left until they have reached the max productivity. The next day the remainder of the work to be done less productivity (1000) should be distributed to the appropriate buckets. Each day it is not cleared it will move up in age by 1 day. Once they are worked they fall off. This is only tracking backlog (things not worked) @xidgel
– urdearboy
Nov 20 at 23:33
It seems logical to start working equations from 4+ bucket then 3, 2, 1 but just can’t get there
– urdearboy
Nov 20 at 23:37
add a comment |
I am trying to simulate a backlog of cases by age.
Assumptions:
FIFO: (First In First Out)
: This means we will always prioritize cases in the4+
bucket then move to the bucket to it's left and so on. This means current dayInflow
has last priority.
Productivity = 1,000 = Constant
: The most that can be worked in a single day is 1,000- Before the simulation begins we have
1'000 aged 1 day
,750 aged 2 days
,500 aged 3 days
, &250 aged 4 days
Given this information, I believe it is possible to input any Inflow and have the buckets complete themselves. I cannot figure out what equations to use to populate the desired result though.
I have tried a series of SUM
, SUMIF
, IF
, and checking if the differences between a bucket and productivity is negative (all unsuccessful).
In Photo, the buckets for each day represent the end of day age of everything. Towards the end, when backlog is cleared, all buckets show 0 since the inflow is less then the productivity I.E. cleared that day and never gets to actually age. The inflow column essentially represents 0 days old
Gray columns are locked
How can I correctly populate the buckets and produce no negatives?
excel excel-formula
I am trying to simulate a backlog of cases by age.
Assumptions:
FIFO: (First In First Out)
: This means we will always prioritize cases in the4+
bucket then move to the bucket to it's left and so on. This means current dayInflow
has last priority.
Productivity = 1,000 = Constant
: The most that can be worked in a single day is 1,000- Before the simulation begins we have
1'000 aged 1 day
,750 aged 2 days
,500 aged 3 days
, &250 aged 4 days
Given this information, I believe it is possible to input any Inflow and have the buckets complete themselves. I cannot figure out what equations to use to populate the desired result though.
I have tried a series of SUM
, SUMIF
, IF
, and checking if the differences between a bucket and productivity is negative (all unsuccessful).
In Photo, the buckets for each day represent the end of day age of everything. Towards the end, when backlog is cleared, all buckets show 0 since the inflow is less then the productivity I.E. cleared that day and never gets to actually age. The inflow column essentially represents 0 days old
Gray columns are locked
How can I correctly populate the buckets and produce no negatives?
excel excel-formula
excel excel-formula
asked Nov 20 at 23:15
urdearboy
5,9832725
5,9832725
I'm not clear on your process. On any given day are you "working" the 1000 oldest units?. Do those get removed from the table or do you tote those up somewhere? For the units that don't get worked, do they get carried down one row (to the next day's work) and one column to the right (to give them one more day of aging)?
– xidgel
Nov 20 at 23:31
That all seems correct. On the first day they will work 1000 starting from the right bucket and keep moving left until they have reached the max productivity. The next day the remainder of the work to be done less productivity (1000) should be distributed to the appropriate buckets. Each day it is not cleared it will move up in age by 1 day. Once they are worked they fall off. This is only tracking backlog (things not worked) @xidgel
– urdearboy
Nov 20 at 23:33
It seems logical to start working equations from 4+ bucket then 3, 2, 1 but just can’t get there
– urdearboy
Nov 20 at 23:37
add a comment |
I'm not clear on your process. On any given day are you "working" the 1000 oldest units?. Do those get removed from the table or do you tote those up somewhere? For the units that don't get worked, do they get carried down one row (to the next day's work) and one column to the right (to give them one more day of aging)?
– xidgel
Nov 20 at 23:31
That all seems correct. On the first day they will work 1000 starting from the right bucket and keep moving left until they have reached the max productivity. The next day the remainder of the work to be done less productivity (1000) should be distributed to the appropriate buckets. Each day it is not cleared it will move up in age by 1 day. Once they are worked they fall off. This is only tracking backlog (things not worked) @xidgel
– urdearboy
Nov 20 at 23:33
It seems logical to start working equations from 4+ bucket then 3, 2, 1 but just can’t get there
– urdearboy
Nov 20 at 23:37
I'm not clear on your process. On any given day are you "working" the 1000 oldest units?. Do those get removed from the table or do you tote those up somewhere? For the units that don't get worked, do they get carried down one row (to the next day's work) and one column to the right (to give them one more day of aging)?
– xidgel
Nov 20 at 23:31
I'm not clear on your process. On any given day are you "working" the 1000 oldest units?. Do those get removed from the table or do you tote those up somewhere? For the units that don't get worked, do they get carried down one row (to the next day's work) and one column to the right (to give them one more day of aging)?
– xidgel
Nov 20 at 23:31
That all seems correct. On the first day they will work 1000 starting from the right bucket and keep moving left until they have reached the max productivity. The next day the remainder of the work to be done less productivity (1000) should be distributed to the appropriate buckets. Each day it is not cleared it will move up in age by 1 day. Once they are worked they fall off. This is only tracking backlog (things not worked) @xidgel
– urdearboy
Nov 20 at 23:33
That all seems correct. On the first day they will work 1000 starting from the right bucket and keep moving left until they have reached the max productivity. The next day the remainder of the work to be done less productivity (1000) should be distributed to the appropriate buckets. Each day it is not cleared it will move up in age by 1 day. Once they are worked they fall off. This is only tracking backlog (things not worked) @xidgel
– urdearboy
Nov 20 at 23:33
It seems logical to start working equations from 4+ bucket then 3, 2, 1 but just can’t get there
– urdearboy
Nov 20 at 23:37
It seems logical to start working equations from 4+ bucket then 3, 2, 1 but just can’t get there
– urdearboy
Nov 20 at 23:37
add a comment |
2 Answers
2
active
oldest
votes
I think this is what you're after.
In H4: =MAX(SUM(G3:H3-$A$3),0)
In G4: =MAX(SUM(F3:H3)-$A$3-SUM(H4),0)
In F4: =MAX(SUM(E3:H3)-$A$3-SUM(G4:H4),0)
In E4: =MAX(SUM(E3:H3)+D4-$A$3-SUM(F4:H4),0)
Then fill down.
In those formulas $A$3
is the productivity. Hope that helps.
very elegant answer
– Bharat Anand
Nov 21 at 1:12
add a comment |
Step1: Guiding principle for each bucket:
If a bucket has more than the remaining productivity for that bucket for that day, then (BUCKETVALUE - REMAININGUNITS), else 0.
We will deploy this IF logic in steps 3 - 6.
Step 3 defines what is REMAININGUNITS for each bucket, which is again used in subsequent steps 3 - 6
Step2:
Now let's define REMAININGUNITS as the amount of units that can be cleared for the day for a bucket
So, REMAININGUNITS for Bucket 4 is PRODUCTIVITY, i.e. potentially all of A3 can be used to clear Bucket 4
=$A$3
Remaining units for bucket 3 = PRODUCTIVITY - Actual Reduction in Bucket 4
=($A$3-(H3-H4))
Remaining units for bucket 2 = PRODUCTIVITY - Actual Reduction in Bucket 4 - Actual Reduction in Bucket 3
=($A$3-(H3-H4)-(G3-G4))
Remaining units for bucket 1 = PRODUCTIVITY - Actual Reduction in Bucket 4 - Actual Reduction in Bucket 3 - Actual Reduction in Bucket 2
=($A$3-(H3-H4)-(G3-G4)-(F3-F4))
Step3:
Clear as much of 4th bucket as possible,
H4=IF(H3>$A$3,H3-$A$3,0)
Step4:
Clear as much of 3rd bucket as possible,
G4=IF(G3>($A$3-(H3-H4)),G3-($A$3-(H3-H4)),0)
Step5:
Clear as much of 2nd bucket as possible,
F4=IF(F3>($A$3-(H3-H4)-(G3-G4)),F3-($A$3-(H3-H4)-(G3-G4)),0)
Step6:
Clear as much of (1st bucket + INFLOW) as possible,
E4=IF(E3+D3>($A$3-(H3-H4)-(G3-G4)-(F3-F4)),E3+D3-($A$3-(H3-H4)-(G3-G4)-(F3-F4)),0)
Step7:
Fill the formulaes from Row 4 to the remanining rows
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53403050%2ffifo-aging-simulation%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
I think this is what you're after.
In H4: =MAX(SUM(G3:H3-$A$3),0)
In G4: =MAX(SUM(F3:H3)-$A$3-SUM(H4),0)
In F4: =MAX(SUM(E3:H3)-$A$3-SUM(G4:H4),0)
In E4: =MAX(SUM(E3:H3)+D4-$A$3-SUM(F4:H4),0)
Then fill down.
In those formulas $A$3
is the productivity. Hope that helps.
very elegant answer
– Bharat Anand
Nov 21 at 1:12
add a comment |
I think this is what you're after.
In H4: =MAX(SUM(G3:H3-$A$3),0)
In G4: =MAX(SUM(F3:H3)-$A$3-SUM(H4),0)
In F4: =MAX(SUM(E3:H3)-$A$3-SUM(G4:H4),0)
In E4: =MAX(SUM(E3:H3)+D4-$A$3-SUM(F4:H4),0)
Then fill down.
In those formulas $A$3
is the productivity. Hope that helps.
very elegant answer
– Bharat Anand
Nov 21 at 1:12
add a comment |
I think this is what you're after.
In H4: =MAX(SUM(G3:H3-$A$3),0)
In G4: =MAX(SUM(F3:H3)-$A$3-SUM(H4),0)
In F4: =MAX(SUM(E3:H3)-$A$3-SUM(G4:H4),0)
In E4: =MAX(SUM(E3:H3)+D4-$A$3-SUM(F4:H4),0)
Then fill down.
In those formulas $A$3
is the productivity. Hope that helps.
I think this is what you're after.
In H4: =MAX(SUM(G3:H3-$A$3),0)
In G4: =MAX(SUM(F3:H3)-$A$3-SUM(H4),0)
In F4: =MAX(SUM(E3:H3)-$A$3-SUM(G4:H4),0)
In E4: =MAX(SUM(E3:H3)+D4-$A$3-SUM(F4:H4),0)
Then fill down.
In those formulas $A$3
is the productivity. Hope that helps.
answered Nov 21 at 0:05
xidgel
2,1272717
2,1272717
very elegant answer
– Bharat Anand
Nov 21 at 1:12
add a comment |
very elegant answer
– Bharat Anand
Nov 21 at 1:12
very elegant answer
– Bharat Anand
Nov 21 at 1:12
very elegant answer
– Bharat Anand
Nov 21 at 1:12
add a comment |
Step1: Guiding principle for each bucket:
If a bucket has more than the remaining productivity for that bucket for that day, then (BUCKETVALUE - REMAININGUNITS), else 0.
We will deploy this IF logic in steps 3 - 6.
Step 3 defines what is REMAININGUNITS for each bucket, which is again used in subsequent steps 3 - 6
Step2:
Now let's define REMAININGUNITS as the amount of units that can be cleared for the day for a bucket
So, REMAININGUNITS for Bucket 4 is PRODUCTIVITY, i.e. potentially all of A3 can be used to clear Bucket 4
=$A$3
Remaining units for bucket 3 = PRODUCTIVITY - Actual Reduction in Bucket 4
=($A$3-(H3-H4))
Remaining units for bucket 2 = PRODUCTIVITY - Actual Reduction in Bucket 4 - Actual Reduction in Bucket 3
=($A$3-(H3-H4)-(G3-G4))
Remaining units for bucket 1 = PRODUCTIVITY - Actual Reduction in Bucket 4 - Actual Reduction in Bucket 3 - Actual Reduction in Bucket 2
=($A$3-(H3-H4)-(G3-G4)-(F3-F4))
Step3:
Clear as much of 4th bucket as possible,
H4=IF(H3>$A$3,H3-$A$3,0)
Step4:
Clear as much of 3rd bucket as possible,
G4=IF(G3>($A$3-(H3-H4)),G3-($A$3-(H3-H4)),0)
Step5:
Clear as much of 2nd bucket as possible,
F4=IF(F3>($A$3-(H3-H4)-(G3-G4)),F3-($A$3-(H3-H4)-(G3-G4)),0)
Step6:
Clear as much of (1st bucket + INFLOW) as possible,
E4=IF(E3+D3>($A$3-(H3-H4)-(G3-G4)-(F3-F4)),E3+D3-($A$3-(H3-H4)-(G3-G4)-(F3-F4)),0)
Step7:
Fill the formulaes from Row 4 to the remanining rows
add a comment |
Step1: Guiding principle for each bucket:
If a bucket has more than the remaining productivity for that bucket for that day, then (BUCKETVALUE - REMAININGUNITS), else 0.
We will deploy this IF logic in steps 3 - 6.
Step 3 defines what is REMAININGUNITS for each bucket, which is again used in subsequent steps 3 - 6
Step2:
Now let's define REMAININGUNITS as the amount of units that can be cleared for the day for a bucket
So, REMAININGUNITS for Bucket 4 is PRODUCTIVITY, i.e. potentially all of A3 can be used to clear Bucket 4
=$A$3
Remaining units for bucket 3 = PRODUCTIVITY - Actual Reduction in Bucket 4
=($A$3-(H3-H4))
Remaining units for bucket 2 = PRODUCTIVITY - Actual Reduction in Bucket 4 - Actual Reduction in Bucket 3
=($A$3-(H3-H4)-(G3-G4))
Remaining units for bucket 1 = PRODUCTIVITY - Actual Reduction in Bucket 4 - Actual Reduction in Bucket 3 - Actual Reduction in Bucket 2
=($A$3-(H3-H4)-(G3-G4)-(F3-F4))
Step3:
Clear as much of 4th bucket as possible,
H4=IF(H3>$A$3,H3-$A$3,0)
Step4:
Clear as much of 3rd bucket as possible,
G4=IF(G3>($A$3-(H3-H4)),G3-($A$3-(H3-H4)),0)
Step5:
Clear as much of 2nd bucket as possible,
F4=IF(F3>($A$3-(H3-H4)-(G3-G4)),F3-($A$3-(H3-H4)-(G3-G4)),0)
Step6:
Clear as much of (1st bucket + INFLOW) as possible,
E4=IF(E3+D3>($A$3-(H3-H4)-(G3-G4)-(F3-F4)),E3+D3-($A$3-(H3-H4)-(G3-G4)-(F3-F4)),0)
Step7:
Fill the formulaes from Row 4 to the remanining rows
add a comment |
Step1: Guiding principle for each bucket:
If a bucket has more than the remaining productivity for that bucket for that day, then (BUCKETVALUE - REMAININGUNITS), else 0.
We will deploy this IF logic in steps 3 - 6.
Step 3 defines what is REMAININGUNITS for each bucket, which is again used in subsequent steps 3 - 6
Step2:
Now let's define REMAININGUNITS as the amount of units that can be cleared for the day for a bucket
So, REMAININGUNITS for Bucket 4 is PRODUCTIVITY, i.e. potentially all of A3 can be used to clear Bucket 4
=$A$3
Remaining units for bucket 3 = PRODUCTIVITY - Actual Reduction in Bucket 4
=($A$3-(H3-H4))
Remaining units for bucket 2 = PRODUCTIVITY - Actual Reduction in Bucket 4 - Actual Reduction in Bucket 3
=($A$3-(H3-H4)-(G3-G4))
Remaining units for bucket 1 = PRODUCTIVITY - Actual Reduction in Bucket 4 - Actual Reduction in Bucket 3 - Actual Reduction in Bucket 2
=($A$3-(H3-H4)-(G3-G4)-(F3-F4))
Step3:
Clear as much of 4th bucket as possible,
H4=IF(H3>$A$3,H3-$A$3,0)
Step4:
Clear as much of 3rd bucket as possible,
G4=IF(G3>($A$3-(H3-H4)),G3-($A$3-(H3-H4)),0)
Step5:
Clear as much of 2nd bucket as possible,
F4=IF(F3>($A$3-(H3-H4)-(G3-G4)),F3-($A$3-(H3-H4)-(G3-G4)),0)
Step6:
Clear as much of (1st bucket + INFLOW) as possible,
E4=IF(E3+D3>($A$3-(H3-H4)-(G3-G4)-(F3-F4)),E3+D3-($A$3-(H3-H4)-(G3-G4)-(F3-F4)),0)
Step7:
Fill the formulaes from Row 4 to the remanining rows
Step1: Guiding principle for each bucket:
If a bucket has more than the remaining productivity for that bucket for that day, then (BUCKETVALUE - REMAININGUNITS), else 0.
We will deploy this IF logic in steps 3 - 6.
Step 3 defines what is REMAININGUNITS for each bucket, which is again used in subsequent steps 3 - 6
Step2:
Now let's define REMAININGUNITS as the amount of units that can be cleared for the day for a bucket
So, REMAININGUNITS for Bucket 4 is PRODUCTIVITY, i.e. potentially all of A3 can be used to clear Bucket 4
=$A$3
Remaining units for bucket 3 = PRODUCTIVITY - Actual Reduction in Bucket 4
=($A$3-(H3-H4))
Remaining units for bucket 2 = PRODUCTIVITY - Actual Reduction in Bucket 4 - Actual Reduction in Bucket 3
=($A$3-(H3-H4)-(G3-G4))
Remaining units for bucket 1 = PRODUCTIVITY - Actual Reduction in Bucket 4 - Actual Reduction in Bucket 3 - Actual Reduction in Bucket 2
=($A$3-(H3-H4)-(G3-G4)-(F3-F4))
Step3:
Clear as much of 4th bucket as possible,
H4=IF(H3>$A$3,H3-$A$3,0)
Step4:
Clear as much of 3rd bucket as possible,
G4=IF(G3>($A$3-(H3-H4)),G3-($A$3-(H3-H4)),0)
Step5:
Clear as much of 2nd bucket as possible,
F4=IF(F3>($A$3-(H3-H4)-(G3-G4)),F3-($A$3-(H3-H4)-(G3-G4)),0)
Step6:
Clear as much of (1st bucket + INFLOW) as possible,
E4=IF(E3+D3>($A$3-(H3-H4)-(G3-G4)-(F3-F4)),E3+D3-($A$3-(H3-H4)-(G3-G4)-(F3-F4)),0)
Step7:
Fill the formulaes from Row 4 to the remanining rows
edited Nov 21 at 0:50
answered Nov 21 at 0:43
Bharat Anand
325410
325410
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53403050%2ffifo-aging-simulation%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
I'm not clear on your process. On any given day are you "working" the 1000 oldest units?. Do those get removed from the table or do you tote those up somewhere? For the units that don't get worked, do they get carried down one row (to the next day's work) and one column to the right (to give them one more day of aging)?
– xidgel
Nov 20 at 23:31
That all seems correct. On the first day they will work 1000 starting from the right bucket and keep moving left until they have reached the max productivity. The next day the remainder of the work to be done less productivity (1000) should be distributed to the appropriate buckets. Each day it is not cleared it will move up in age by 1 day. Once they are worked they fall off. This is only tracking backlog (things not worked) @xidgel
– urdearboy
Nov 20 at 23:33
It seems logical to start working equations from 4+ bucket then 3, 2, 1 but just can’t get there
– urdearboy
Nov 20 at 23:37