H
Henry
All,
I need to parse a single record in a table with a field that has multiple
delimited values into multiple records. I would like all the new records to
have identical values in all other fields but have only a single value from
the field with the delimited values. The number of values in the delimited
field is variable with a max of 32. I assume I am looking at a UNION query
using some function that will parse out the delimited values. I was able to
find something in MySQL that talks about a function called SUBSTRING_INDEX
that seems to do what I am looking for. Does anyone know a similar function
in Access. Thanks
Example:
Field1 Field2 Field3
Andy Hockey, Football, Baseball $20
Field1 Field2 Field3
Andy Hockey $20
Andy Football $20
Andy Baseball $20
Henry
I need to parse a single record in a table with a field that has multiple
delimited values into multiple records. I would like all the new records to
have identical values in all other fields but have only a single value from
the field with the delimited values. The number of values in the delimited
field is variable with a max of 32. I assume I am looking at a UNION query
using some function that will parse out the delimited values. I was able to
find something in MySQL that talks about a function called SUBSTRING_INDEX
that seems to do what I am looking for. Does anyone know a similar function
in Access. Thanks
Example:
Field1 Field2 Field3
Andy Hockey, Football, Baseball $20
Field1 Field2 Field3
Andy Hockey $20
Andy Football $20
Andy Baseball $20
Henry