Combine Multiple Formulas for Dim Weight

VJVJVJ

New Member
Joined
Apr 25, 2014
Messages
2
I am creating a Dim Weight calculator to determine the best way to ship. Is there a way to combine these four formulas into one?
I have multiple criteria to check and I may have multiple calculators to combine. This is one example.

IN CELL B18 =IF(AND(C16="Kilos",B16<68),"PARCEL", "")

IN CELL C18 =IF(AND(C16="Kilos",B16>68),"FREIGHT","")

IN CELL B19 =IF(AND(C16="POUNDS",B16>150),"FREIGHT","")

IN CELL C19 =IF(AND(C16="POUNDS",B16<150),"PARCEL","")
Dimensional Weight Calculator
PALLET/BOX #1Select from List
Unit of MeasurementsCM/KG
Actual Weight 500=IF($B$5="CM/KG","Kilos",IF($B$5="CBM","KILOS","Pounds"))
Fill in metrics
Length 75=IF($B$5="CM/KG","CM",IF($B$5="CBM","CM","Inches"))
Width100=IF($B$5="CM/KG","CM",IF($B$5="CBM","CM","Inches"))
Height 42=IF($B$5="CM/KG","CM",IF($B$5="CBM","CM","Inches"))
CBM Manual1.5
DIM Weight =IF($C$7="pounds",($B$9*$B$10*$B$11)/139*0.453592,IF($C$7="cbm",$B$13/5000*1000000,$W$49))Kilos
Weight to Use=IF(AND($C$7="Pounds",$B$7*0.453592,$B$7)>B15,B15)Kilos
If Weight <150lbs/68kilo=IF(AND(C16="Kilos",B16<68),"PARCEL", "")=IF(AND(C16="POUNDS",B16<150),"PARCEL","")
>150lbs/68kilos=IF(AND(C16="Kilos",B16>68),"FREIGHT","")=IF(AND(C16="POUNDS",B16>150),"FREIGHT","")

<tbody>
</tbody><colgroup><col><col><col></colgroup>

<tbody>
</tbody>
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
=IF(OR(AND(C16="Kilos",B16<68),AND(C16="POUNDS",B16<150)),"PARCEL", IF(OR(AND(C16="Kilos",B16>68),AND(C16="POUNDS",B16>150)),"FREIGHT",""))
 
Upvote 0
=IF(OR(AND(C16="Kilos",B16<68),AND(C16="POUNDS",B16<150)),"PARCEL", IF(OR(AND(C16="Kilos",B16>68),AND(C16="POUNDS",B16>150)),"FREIGHT",""))
Thank you it worked- Too many If, Ands', and OR's'. Could not make the combination work on my own.Thanks
 
Upvote 0

Forum statistics

Threads
1,215,497
Messages
6,125,157
Members
449,208
Latest member
emmac

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