littledobby
New Member
- Joined
- Jul 16, 2008
- Messages
- 8
Hi! I'm trying to create a formula to tell me which products should ship via UPS Ground (any product with dimensions of 1 cubic foot or more), which should ship via USPS Priority Mail (any other product with dimensions < 1 cubic foot but that WEIGHS 1 lb or more), and have anything weighing < 1 lb shipping via USPS First Class Mail no matter what.
I haven't yet figured out how to include the weight to find the USPS First Class ones, but I can tell you the Weight is found in Column V.
**Note: The formula to find Cubic Footage is: (L x W x H) / 1728
This is what I used to have when I didn't know the cubic footage was involved (so I was only going by weight (Column V):
=IF((V2095>1),"UPSGround",(IF(V2095>0.99,"USPSPriority","USPSFirstClass")))
This is what I now have, but I don't know how to allow for the < 1 lb weight to force those items to ship via USPS First Class):
=IF((QUOTIENT((AN2095*AO2095*AP2095),1728)>1),"UPSGround",(IF(QUOTIENT((AN2095*AO2095*AP2095),1728)>.99,"USPSPriority","USPSFirstClass")))
Any help with this would be GREATLY appreciated!!! Thank you!
Susie
I haven't yet figured out how to include the weight to find the USPS First Class ones, but I can tell you the Weight is found in Column V.
**Note: The formula to find Cubic Footage is: (L x W x H) / 1728
This is what I used to have when I didn't know the cubic footage was involved (so I was only going by weight (Column V):
=IF((V2095>1),"UPSGround",(IF(V2095>0.99,"USPSPriority","USPSFirstClass")))
This is what I now have, but I don't know how to allow for the < 1 lb weight to force those items to ship via USPS First Class):
=IF((QUOTIENT((AN2095*AO2095*AP2095),1728)>1),"UPSGround",(IF(QUOTIENT((AN2095*AO2095*AP2095),1728)>.99,"USPSPriority","USPSFirstClass")))
Any help with this would be GREATLY appreciated!!! Thank you!
Susie