+ Reply to Thread
Results 1 to 16 of 16

Pallet Calculator.

  1. #1
    Registered User
    Join Date
    09-16-2016
    Location
    England
    MS-Off Ver
    Excel 2013
    Posts
    84

    Pallet Calculator.

    Hello all,

    I was wondering if someone can help me.

    I run a warehouse that stores various boxes of products that come in all shapes and sizes. Quite often I have the dimensions of boxes BEFORE they arrive at my warehouse.

    I have 3 different pallet sizes that I have to order prior to stock arriving. A standard size pallet, a medium sizes pallet and a large size pallet.

    To help me plan ahead and place my pallet orders before the items arrive I am trying to put together something that will help me calculate what products fit onto what pallet and how many.

    The spreadsheet has my 3 pallet sizes and the max cubic at the top in meters and below that is an example SKU where I've typed in the height, length and depth. In the "suggested pallet" column I want this to look at my measurements and suggest a pallet and qty that will fit so I can place my orders for pallets in advance.

    Hope this makes sense.

    I'd be very thankful for any help on this, see attached.
    Attached Files Attached Files

  2. #2
    Forum Expert 63falcondude's Avatar
    Join Date
    08-22-2016
    Location
    USA
    MS-Off Ver
    365
    Posts
    6,266

    Re: Pallet Calculator.

    If you include in your sample, a couple more rows of data along with the desired results (manually entered), we should be able to get you to a solution.
    I would also recommend rearranging the table in B3:D6 to match the order of the headers in C9:E9 to avoid any possible confusion.

    One question that I have, is if each of the values in columns C, D, and E (starting in row 10), have to be ≤ the corresponding values in B4:D6.

    For example, should row 10 be "Large Pallet" since 0.14 ≤ 1.60 (Standard), 1.56 ≤ 1.60 (Medium), 1.29 ≤ 1.30 (Large) thus taking the smallest pallet size that fits all criteria?

    Or, are you looking only at the cubic value?

  3. #3
    Registered User
    Join Date
    09-16-2016
    Location
    England
    MS-Off Ver
    Excel 2013
    Posts
    84

    Re: Pallet Calculator.

    I'm totally confused what you mean with the below. I only know very basic Excel.

    Would you be so kind to put what you mean into my spread sheet and upload . . . . . its easier for me understand once I see it.

  4. #4
    Forum Expert 63falcondude's Avatar
    Join Date
    08-22-2016
    Location
    USA
    MS-Off Ver
    365
    Posts
    6,266

    Re: Pallet Calculator.

    Which part of post #2 confused you? If it was the second sentence, look at the workbook that you shared in post #1.

    Notice that the headers in row 3 show {Length, Width, Height} whereas the headers in row 9 show {Height, Length, Depth}. I was simply suggesting that you make the order (and wording) of these the same.

    We (the contributors to this forum) need to understand the logic behind how you determine which pallet to use.
    This is why I am asking for a few more rows of data (like row 10) along with the desired pallet size for each row which you can manually type into columns G and M.

    Once we understand your logic by looking at a few examples and their corresponding results, we can figure out how to get this working automatically in Excel.

  5. #5
    Registered User
    Join Date
    09-16-2016
    Location
    England
    MS-Off Ver
    Excel 2013
    Posts
    84

    Re: Pallet Calculator.

    Hello,

    See attached.

    In row 10 I have inputted manually my outcome.

    The height of the box (0.14) can fit on any size pallet.
    The length of the box (1.56) can fit on a medium pallet and large pallet.
    The width of the box (1.29) can only fit on a large pallet.

    Therefore I will have to use a large pallet for this box / product.

    To calculate how many I can load on this pallet I divide 5.59 (cubic of the pallet) into 0.28 (cubic of the box) and this tells me I can fit 19.96 boxes onto it.

    Hope this helps. see re-attached.
    Attached Files Attached Files

  6. #6
    Forum Expert 63falcondude's Avatar
    Join Date
    08-22-2016
    Location
    USA
    MS-Off Ver
    365
    Posts
    6,266

    Re: Pallet Calculator.

    Try these:

    G10 =INDEX($A$4:$A$6,INDEX(MATCH(1,($B$4:$B$6>=$D10)*($C$4:$C$6>=$E10)*($D$4:$D$6>=$C10),0),0))
    H10 =VLOOKUP(G10,$A$4:$E$6,5,0)/F10

  7. #7
    Forum Expert 63falcondude's Avatar
    Join Date
    08-22-2016
    Location
    USA
    MS-Off Ver
    365
    Posts
    6,266

    Re: Pallet Calculator.

    Since you technically can't load partial boxes, you can edit the formula in column H if you want to return just the integer (whole-number) of the result by using the INT function.

    That would be this:

    H10 =INT(VLOOKUP(G10,$A$4:$E$6,5,0)/F10)

    This will give you 19 instead of 19.84127...

  8. #8
    Registered User
    Join Date
    09-16-2016
    Location
    England
    MS-Off Ver
    Excel 2013
    Posts
    84

    Re: Pallet Calculator.

    Hello,

    This is fantastic.

    however I have just thought of something that I didn't notice.

    I have a max weight on each pallet of 1000KG's how would I take this into consideration?

    I have included box weights see attached.
    Attached Files Attached Files

  9. #9
    Forum Expert 63falcondude's Avatar
    Join Date
    08-22-2016
    Location
    USA
    MS-Off Ver
    365
    Posts
    6,266

    Re: Pallet Calculator.

    Looking at the workbook shared in post #8:

    =INT(VLOOKUP(H10,$A$4:$E$6,5,0)/F10) shows the maximum # of boxes that you can load due to size. (You already have this formula)
    =INT(VLOOKUP(H10,$A$4:$F$6,6,0)/G10) shows the maximum # of boxes that you can load due to weight.

    You want the formula in column I to show the maximum # of boxes that you can load due to weight and size. This would be the minimum value of the above two formulas.

    Putting it all together, we have this:

    I10 =MIN(INT(VLOOKUP(H10,$A$4:$E$6,5,0)/F10),INT(VLOOKUP(H10,$A$4:$F$6,6,0)/G10))

  10. #10
    Registered User
    Join Date
    09-16-2016
    Location
    England
    MS-Off Ver
    Excel 2013
    Posts
    84

    Re: Pallet Calculator.

    PERFECT!!!!!

    I have over 10,000 boxes arriving in the coming months this will be vital to help me plan.

    I can't thank you enough!

  11. #11
    Forum Expert 63falcondude's Avatar
    Join Date
    08-22-2016
    Location
    USA
    MS-Off Ver
    365
    Posts
    6,266

    Re: Pallet Calculator.

    If you want to drag all of the formulas down the columns, so that they are automatically calculated once the data is entered into columns A,B,C,D,E, and G, you can use these:

    F10 =IF(COUNT(C10:E10),C10*D10*E10,"")
    H10 =IF(COUNT(C10:E10),INDEX($A$4:$A$6,INDEX(MATCH(1,($B$4:$B$6>=$D10)*($C$4:$C$6>=$E10)*($D$4:$D$6>=$C10),0),0)),"")
    I10 =IFERROR(INT(MIN(VLOOKUP(H10,$A$4:$E$6,5,0)/F10,VLOOKUP(H10,$A$4:$F$6,6,0)/G10)),"")

    Drag all of these formulas down through row 32 (or however far you'd like).

    These formulas will ensure that the formula columns (F, H, and I) only show a result once a number is inputted into the corresponding row of columns C, D, or E.

    Note that I shortened the formula in I10 slightly by only using INT once.

  12. #12
    Forum Expert 63falcondude's Avatar
    Join Date
    08-22-2016
    Location
    USA
    MS-Off Ver
    365
    Posts
    6,266

    Re: Pallet Calculator.

    You're welcome. I'm glad to have been able to help.

    If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED.

  13. #13
    Registered User
    Join Date
    09-16-2016
    Location
    England
    MS-Off Ver
    Excel 2013
    Posts
    84

    Re: Pallet Calculator.

    Thanks Again for your help.

    I will mark as solved.

  14. #14
    Registered User
    Join Date
    06-13-2019
    Location
    Corby UK
    MS-Off Ver
    2016
    Posts
    1

    Re: Pallet Calculator.

    Hello All,

    is it possible to have the formula amended to consider two box sizes, or even more if possible,?

    kind regards
    Agata

  15. #15
    Forum Expert 63falcondude's Avatar
    Join Date
    08-22-2016
    Location
    USA
    MS-Off Ver
    365
    Posts
    6,266

    Re: Pallet Calculator.

    Hello alabecka. Welcome to the forum.

    We are happy to help, however whilst you feel your request is similar to this thread, experience has shown that things soon get confusing when answers refer to particular cells/ranges/sheets which are unique to your post and not relevant to the original. Please start a new thread.

    If you are not familiar with how to start a new thread see the FAQ: How to start a new thread

  16. #16
    Registered User
    Join Date
    01-19-2023
    Location
    Delhi,India
    MS-Off Ver
    2007
    Posts
    1

    Re: Pallet Calculator.

    You can put formula according to pallet size measurement. Perhaps problem will be solved.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Calculating pallet movement
    By Mitch.Birlea in forum Excel General
    Replies: 1
    Last Post: 08-31-2017, 12:52 PM
  2. Calculation Pallet Movement
    By Mitch.Birlea in forum Excel General
    Replies: 5
    Last Post: 06-08-2017, 04:45 AM
  3. [SOLVED] Calculating pallet movement
    By Mitch.Birlea in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 06-02-2017, 11:48 AM
  4. Calculating pallet movement
    By Mitch.Birlea in forum Excel General
    Replies: 0
    Last Post: 06-02-2017, 07:00 AM
  5. Piece, Box and Pallet Qty. How to calculate each
    By unclejemima in forum Excel General
    Replies: 6
    Last Post: 05-05-2017, 06:33 PM
  6. Pallet Calculation Problem
    By duvall73 in forum Excel General
    Replies: 1
    Last Post: 05-01-2010, 11:52 PM
  7. Replies: 1
    Last Post: 10-20-2009, 03:15 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1