taber13
03-15-2001, 09:31 AM
I have a select box that stores the selected value in a textbox comma delimited. This select box also stores the numeric value (price) in another textbox comma delimited. I would like to know how to Sum all the values in a textbox that has only numeric values comma delimited.
Pat Hartman
03-15-2001, 05:39 PM
Change the table design. NO column should contain multiple values! You need a second table so that the multiple items can be stored properly. Take a look at the northwinds.mdb and see the order and order details tables for an example of this type of one-to-many relationship.
llkhoutx
03-16-2001, 11:04 AM
Unpack them with the instr() function and add them together.