Pallets, part pallets and cartons calculator

Martin team

New Member
Joined
Jun 9, 2022
Messages
7
What I need to work out is how many pallets & part pallets and cartons required based on amount of items.

For example if a pallet holds 90 items & a carton holds 10 items then 90 items(9 cartons) would equate to 1 pallet, 210 items would be 2 full pallets , 1 part pallet with 30 items on it... with is 3 cartons on the part pallet.
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
This is not as complicated as you might think. Before I help you with some code: why don't you try to write down (in human readable language) which steps you would take yourself when you have a number of items and want to know how much of each kind of packaging is required. These are the steps you'll have to automate! (And I'm happy to help you with that.)

Also think of the format in which you want to have the result returned after entering an amount of items in your formula or function. Are there any cells to be filled with the different number of cartons and pallets, or do you want a message box to show the result? etc. And: where is the amount of items entered? Is it the value of a specific cell on a worksheet, or do you want to enter it in an input box?
 
Upvote 0
Thank You very much guy's 😊 I couldn't put picture before... just now let me... I need something like this on the picture...
 

Attachments

  • Screenshot_20220608-161244_Gallery.jpg
    Screenshot_20220608-161244_Gallery.jpg
    67.4 KB · Views: 27
Upvote 0
MrExcelPlayground9-1.xlsx
ABCDEFGHI
7Qty expectedqty receivedpallet qtyfull palletspart palletsno of ctns on full palletcarton qtyctns on part palletloosies
8210902191030
9520905191070
10200902191020
11550506051010
12270503151000
Sheet15
Cell Formulas
RangeFormula
D8:D12D8=INT(A8/90)
E8:E12E8=--(MOD(A8,C8)>0)
F8:F12F8=C8/G8
H8:H12H8=INT(MOD(A8,90)/10)
I8:I12I8=MOD(A8,10)
 
Upvote 0
Solution
MrExcelPlayground9-1.xlsx
ABCDEFGHI
7Qty expectedqty receivedpallet qtyfull palletspart palletsno of ctns on full palletcarton qtyctns on part palletloosies
8210902191030
9520905191070
10200902191020
11550506051010
12270503151000
Sheet15
Cell Formulas
RangeFormula
D8:D12D8=INT(A8/90)
E8:E12E8=--(MOD(A8,C8)>0)
F8:F12F8=C8/G8
H8:H12H8=INT(MOD(A8,90)/10)
I8:I12I8=MOD(A8,10)
Thank You very much pal 😊
 
Upvote 0
I will try this when I get back to the house. I will check with other items. If everything will be ok and I no need more help 😅 I will mark as solution...😊 and for now thanks for all answers. It help me a lot. I appreciate it 😊
 
Upvote 0
MrExcelPlayground9-1.xlsx
ABCDEFGHI
7Qty expectedqty receivedpallet qtyfull palletspart palletsno of ctns on full palletcarton qtyctns on part palletloosies
8210902191030
9520905191070
10200902191020
11550506051010
12270503151000
Sheet15
Cell Formulas
RangeFormula
D8:D12D8=INT(A8/90)
E8:E12E8=--(MOD(A8,C8)>0)
F8:F12F8=C8/G8
H8:H12H8=INT(MOD(A8,90)/10)
I8:I12I8=MOD(A8,10)
Nicely done! The formula in D8 should be "=INT(A8/C8)", considering the different quantities in column C. That's the only addition I can think of!
 
Upvote 0

Forum statistics

Threads
1,216,172
Messages
6,129,290
Members
449,498
Latest member
Lee_ray

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