Jump to content

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

Recommended Posts

Posted

I want to format a price field, such that when a Customer Type field has radio button "Dealer" clicked, the price will be $X, but when "Non-dealer" is selected, the price will be $Y. The button needs to be "live," not an auto-enter at record creation based on a selection that hasn't been made yet. But the price must be overideable by the user. How can I do this?

Posted

Make the Price field two fields:

Price Entry (number)

Price Display (calculation, number) =

Case(

NotIsEmpty(Price Entry), Price Entry,

Customer Type = "Dealer", $X,

$Y)

Put the Price Display field on top of the Price Entry field. Make the Price Display field opaque and disallow entry into it (I know you can't really change it, but do it anyway!). When you click on the Price Display field, you will land in the Price Entry field beneath it.

-bd

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