#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default Matrix

I am putting together a freight matrix to calculate the loadfactor on
truckloads. I have run into a problem with some of the product because it
cubes out the truck verses weighing out the truck. On the product that
weighs out, I am able to use the IF function to make sure I am shipping the
maximum weight allowed per truckload without being to heavy. On the product
that cubes out, I need a way to recognize that product in a formula by
converting the cube size to a number that will let me know that it is a cube
product issue and that is why the maximum truckload weight is not attained.

Please Help!
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 430
Default Matrix

Excel geeks probably don't know much about Cube vs Weight for trucking.
Perhaps you can give us more info? What is an example of a Cube value? Is
it a measure of the area inside of the truck? Perhaps give us sample data
for one with a weight and then one that is cubed?

"cjgrossley" wrote:

I am putting together a freight matrix to calculate the loadfactor on
truckloads. I have run into a problem with some of the product because it
cubes out the truck verses weighing out the truck. On the product that
weighs out, I am able to use the IF function to make sure I am shipping the
maximum weight allowed per truckload without being to heavy. On the product
that cubes out, I need a way to recognize that product in a formula by
converting the cube size to a number that will let me know that it is a cube
product issue and that is why the maximum truckload weight is not attained.

Please Help!

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default Matrix

Yes,

It is a measure of the area inside of the truck? For example:

Product A - Is on a 48X48 pallet and weighs 1544#. Maximum weight on a
truckload is 41,000#. You could fit a maximum 28 pallets on the truck but
the weight won't allow you to load 28 pallets so you load 26 pallets to make
a truckload.

Product B - Is on a 48X60 pallets and weighs 1197#. In this case, the
product weighs less but the pallets are bigger; so they will cube out to make
a truckload before they reach the weight maximum.

The formula being used for product A is:
=+IF(G6135300,"OverWeight",35300-G61; it allows me to plug in a number of
pallets and then it will let me know how close I am to a full truckload. But
I can't figure out how to do this with product B because it cubes out the
truck.

"tim m" wrote:

Excel geeks probably don't know much about Cube vs Weight for trucking.
Perhaps you can give us more info? What is an example of a Cube value? Is
it a measure of the area inside of the truck? Perhaps give us sample data
for one with a weight and then one that is cubed?

"cjgrossley" wrote:

I am putting together a freight matrix to calculate the loadfactor on
truckloads. I have run into a problem with some of the product because it
cubes out the truck verses weighing out the truck. On the product that
weighs out, I am able to use the IF function to make sure I am shipping the
maximum weight allowed per truckload without being to heavy. On the product
that cubes out, I need a way to recognize that product in a formula by
converting the cube size to a number that will let me know that it is a cube
product issue and that is why the maximum truckload weight is not attained.

Please Help!

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 430
Default Matrix

Well it looks like you will be comparing volumes (or areas) rather than
comparing weights. In your first case you say that you can fit 28 48x48
pallets on the truck but are limited to 26 due to the weight.

I would think that you need to calculate how many of the 48x60 pallets will
fit into the truck. 48 by 60 is 48 inches by 60 inches I take it? Are all
pallets the same height?


"cjgrossley" wrote:

Yes,

It is a measure of the area inside of the truck? For example:

Product A - Is on a 48X48 pallet and weighs 1544#. Maximum weight on a
truckload is 41,000#. You could fit a maximum 28 pallets on the truck but
the weight won't allow you to load 28 pallets so you load 26 pallets to make
a truckload.

Product B - Is on a 48X60 pallets and weighs 1197#. In this case, the
product weighs less but the pallets are bigger; so they will cube out to make
a truckload before they reach the weight maximum.

The formula being used for product A is:
=+IF(G6135300,"OverWeight",35300-G61; it allows me to plug in a number of
pallets and then it will let me know how close I am to a full truckload. But
I can't figure out how to do this with product B because it cubes out the
truck.

"tim m" wrote:

Excel geeks probably don't know much about Cube vs Weight for trucking.
Perhaps you can give us more info? What is an example of a Cube value? Is
it a measure of the area inside of the truck? Perhaps give us sample data
for one with a weight and then one that is cubed?

"cjgrossley" wrote:

I am putting together a freight matrix to calculate the loadfactor on
truckloads. I have run into a problem with some of the product because it
cubes out the truck verses weighing out the truck. On the product that
weighs out, I am able to use the IF function to make sure I am shipping the
maximum weight allowed per truckload without being to heavy. On the product
that cubes out, I need a way to recognize that product in a formula by
converting the cube size to a number that will let me know that it is a cube
product issue and that is why the maximum truckload weight is not attained.

Please Help!

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 783
Default Matrix

This could be more complicated than the data provided so far can
accommodate. What is the volume of a truck? And what are its 3
dimensions? For a ridiculous example, but to make the point, if a truck
is 36 inches wide, 240 inches long and 96 inches high, then although it
has a volume of 450 cubic feet you can't put even 1 48x60 pallet in it
because it isn't wide enough.

Alan Beban

tim m wrote:
Well it looks like you will be comparing volumes (or areas) rather than
comparing weights. In your first case you say that you can fit 28 48x48
pallets on the truck but are limited to 26 due to the weight.

I would think that you need to calculate how many of the 48x60 pallets will
fit into the truck. 48 by 60 is 48 inches by 60 inches I take it? Are all
pallets the same height?


"cjgrossley" wrote:


Yes,

It is a measure of the area inside of the truck? For example:

Product A - Is on a 48X48 pallet and weighs 1544#. Maximum weight on a
truckload is 41,000#. You could fit a maximum 28 pallets on the truck but
the weight won't allow you to load 28 pallets so you load 26 pallets to make
a truckload.

Product B - Is on a 48X60 pallets and weighs 1197#. In this case, the
product weighs less but the pallets are bigger; so they will cube out to make
a truckload before they reach the weight maximum.

The formula being used for product A is:
=+IF(G6135300,"OverWeight",35300-G61; it allows me to plug in a number of
pallets and then it will let me know how close I am to a full truckload. But
I can't figure out how to do this with product B because it cubes out the
truck.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Matrix Sandy Excel Discussion (Misc queries) 1 September 12th 07 04:52 PM
matrix [email protected] Excel Worksheet Functions 2 February 14th 06 09:53 PM
Matrix Attempt at solving a Matrix Problem? Excel Discussion (Misc queries) 2 August 15th 05 01:39 AM
BCG matrix Anneke Charts and Charting in Excel 1 August 10th 05 10:02 PM
Matrix Basil Charts and Charting in Excel 7 March 3rd 05 03:49 AM


All times are GMT +1. The time now is 02:33 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"