B
BobT
I have a query that parses data form a field. This field contains 3 digit
codes that I am breaking out. For instance if the field contains the codes:
aaabbbcccdddeee
My result query looks like this
Key V1 V2 V3 V4 V5
1 aaa bbb ccc ddd eee
I need my result to be in the form of:
Key VXX
1 aaa
1 bbb
1 ccc
1 ddd
1 eee
In this manner I can create a table with two fields to contain the data
instead of the first query that parses the data out to mutiple columns. How
would I go about doing this?
Thanks
codes that I am breaking out. For instance if the field contains the codes:
aaabbbcccdddeee
My result query looks like this
Key V1 V2 V3 V4 V5
1 aaa bbb ccc ddd eee
I need my result to be in the form of:
Key VXX
1 aaa
1 bbb
1 ccc
1 ddd
1 eee
In this manner I can create a table with two fields to contain the data
instead of the first query that parses the data out to mutiple columns. How
would I go about doing this?
Thanks