Link to home
Start Free TrialLog in
Avatar of leahg57
leahg57

asked on

parse multivalue field in ms access

In order to work with my data, I need to split the values in a multivalue field into separate fields.  Is this doable?
ASKER CERTIFIED SOLUTION
Avatar of peter57r
peter57r
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Yes, you need some function.
split function can split separated string into substrings
Dim A() as string
A = split("12345,123,543,555",",")
A(0) will be equal to 12345 etc.
I don't really see my post as a solution?