concrete Posted February 26, 2003 Posted February 26, 2003 I have a list of options an order can have each option is a value list with multiple options. (for example: option 1, option 2, option 3) now i need to make a total of this order (knowing that option 1 is ?40, option 2 is ?20, ... , but the name of the option doesn't include the price). So i think i need a calculation with "if" "then" commands... hope this is clear
Lee Smith Posted February 26, 2003 Posted February 26, 2003 How many Options are there? If it is only 3, then you can hard code them into a case statement. I suspect however, that you have more than three, or you will have in the future. For the three you mention, the case would look like this: Case(YourValueList = "option 1", "40.00", YourValueList = "option 2","60.00", YourValueList = "option 3", "80.00") HTH Lee
Recommended Posts
This topic is 7945 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