Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×

This topic is 8682 days old. Please don't post here. Open a new topic instead.

Recommended Posts

  • Newbies
Posted

I want to be able to calculate a shipping price total, based on preset prices, but these prices vary depending on weight. How do I add a calculation that figures the weight of the shipment and then calls the appropriate price for that weight? I have not been able to figure this out. I am using Win NT, Filemaker Pro 3.0

Thank you in advance

Posted

To give you an exact answer, we'll need a little more information about the calculation you want to implement and a description of you file structure. The general idea is to use a calculation:

Shipping Cost (calculation, number) =

Case(

Weight <= 1, ShipPrice1,

Weight <= 3, ShipPrice2,

Weight <= 6, ShipPrice3,

.

.

.

DefaultShipPrice)

The Case() statement takes the value from the first test that succeeds. The second test doesn't need to be "Weight > 1 and Weight <= 3" because if weight > 1, the first test would have succeeded.

-bd

  • Newbies
Posted

Thank you for your response - a little more information - maybe that will help laugh.gif

if i want to set fedex's prices into my system, for example, each zip code set has its own "zone" and each zone has a corresponding price (i.e.

zone 2 for 1 lb. = 41.25

so i need a formula that will determine, zone based on zip code, multiply by weight and determine price. I guess i'm wondering if THAT is doable - that might be significantly more complicated. What do you think?

Posted

It's doable, but a hell of a huge calcualtion! And all the values will be hard-coded into the calculation so when they change their schedule somebody needs to edit the field.

This topic is 8682 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.