Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×
The Claris Museum: The Vault of FileMaker Antiquities at Claris Engage 2025! ×

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

Recommended Posts

  • Newbies
Posted

I have created an order form we fill in while our customer is on the phone with us. We enter the Product ID and auto enter the description. We offer quantity discounts, for example; 1- 12, 13 - 24, 25 - 50, 51 - 100. How can I get the quantity discount price to be automatically entered based on the quantity we enter in the quantity field?

Thank you in advance for your help.

Gary

Posted

Good suggestion. To avoid hard-coding the prices into the calculation, create global fields for each price and refer to the global fields in the calculation.

Even better (because globla fields become tricky in multi-user environments) is to create a "preferences" file to hold the prices.

Posted

Make the price field a calc (or at least an auto-enter), and use the "Case" statement in the calculation.

e.g.:

Case(Quantity > 100, 5.25,

Quantity > 50, 5.75,

Quantity > 25, 6.50)

etc.

Posted

Too true, Vaughan.

Additionally, since those unit prices will occasionally change, I suggest making the discount price field a number field with an auto-enter calculation, rather than a calc field. That way, once the price is figured (based on the quantity ordered), it won't change when you change your unit prices.

This topic is 8460 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.