SteveGriff Posted February 12, 2002 Posted February 12, 2002 Hi people I have a small problem concerning calculation fields. I have this calc field, Unit Price that calculates by how many the customer is ordering from us. (case(Quantity > 50 and Quantity < 50; 3.00; 4.00) etc. ) The problem occurs when someone wants to put in their own Unit Price regardless of what the calculation result of the Unit Price should be. Anyone know how I might get around such problem? Any nice tips on doing such a thing? Thanxs Steve Griff
SteveGriff Posted February 12, 2002 Author Posted February 12, 2002 One quick question to make sure I get this right. This involves having another field visible for entry yeah? Is this the case of "one field above the other" trick? I can see how the Case works for this... I guess this would work? Steve
signal Posted February 13, 2002 Posted February 13, 2002 Create another field for overriding the calculation. Then, if (isempty(FieldForOverride) do the calculation, otherwise use FieldForOverride
Fitch Posted February 13, 2002 Posted February 13, 2002 Been there, done that... Make another field, Override, and then change your Case() statement so that the first test is: Case(Override, Override, ...now put your old tests...)
Recommended Posts
This topic is 8390 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 accountSign in
Already have an account? Sign in here.
Sign In Now