Jarvis Posted July 17, 2006 Posted July 17, 2006 I'm building a database for my cabinetshop. We fabricate in millimeters but communicate with the customer in inches. We use the Extend function to convert inches to millimeters. If you type in the value 36 inches it displays as 915 millimeters. I would like this value to display in both inches & millimeters, but I would like it to be done with just one field. Is there a way to trick a repeating field into using one calculation for Repetition (1) and another calculation for Repetition (2)? Thanks for any tips, Jarvis
bruceR Posted July 18, 2006 Posted July 18, 2006 Simple example: case( Get(calculationRepetitionNumber) = 1; extend(someField); Get(calculationRepetitionNumber) = 2; extend(someField)* 36 ) But repetitions frequently lead to a host of problems and in general should be avoided.
Recommended Posts
This topic is 6765 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