royrae

New Member
Joined
Oct 27, 2016
Messages
8
Hello everyone,

I have an difficult problem and i do not even know if this is possible in MS Excel.

The question is as follows:
The Excel file should automatically calculate the amount of palletlocations needed for storage.

BoxesMondayTuesday
Variation 100
Variation 2140130
Variation 30110
Variation 4140120
Variation 5280190
Variation 600
Variation 700
Variation 800
Variation 900
Variation 1060110
Variation 110110

<tbody>
</tbody>

In the table above you can see that normally on monday there are 5 pallets of boxes produced, with 4 different varations.
These pallets should be stacked.
- Variation 2 + (20 boxes of) variation 5
- Variation 4 + variation 10

Stacked pallets have the following rules regarding capacity:
1 pallet = 260 boxes maximum
2 pallets = 240 boxes maximum
3 pallets = 220 boxes maximum
4 pallets = 200 boxes maximum

Other rules in this calculation are as follows:
- The Variations (as shown in table) need to be stacked together on one pallet!
example: 280 boxes = 260 on 1 pallet location and 20 remaining on another pallet, but these 20 may ofcourse be stacked.


I thought of multiple options (macro's, formulas) but all did not work out... I hope someone on the forum can help me.



If not completely clear, please react on this thread and i will try to explain further.
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
not sure if I'm on track, but what about this:


Excel 2010
ABC
13BoxesMondayTuesday
14Variation 100
15Variation 2140130
16Variation 30110
17Variation 4140120
18Variation 5280190
19Variation 600
20Variation 700
21Variation 800
22Variation 900
23Variation 1060110
24Variation 110110
25Tot Boxes620770
26Pallets34
Sheet1
Cell Formulas
RangeFormula
B25=SUM(B14:B24)
B26=IF(B25<=260,1,IF(B25<=480,2,IF(B25<=660,3,IF(B25<=800,4,"-"))))
C25=SUM(C14:C24)
C26=IF(C25<=260,1,IF(C25<=480,2,IF(C25<=660,3,IF(C25<=800,4,"-"))))
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,219
Messages
6,123,687
Members
449,117
Latest member
Aaagu

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