G
Guest
Hi! I have a problem I've been trying to resolve for some time but don't know the best way to go about it
I have a text file that comes back from a municipality. It contains license plates, names, addresses, etc. I am able to automatically load the data and to split it into fields (it's fixed width, so not that hard). The file comes back with a type (A) for names, (B) for addresses, (C) for City, State, Zip on separate lines. Each type only includes the license plate to link them together
My problem is that the record types may contain 2 or more rows, for different vehicle owners or different addresses. Like this
A123ABC John Smith
A123ABC Delores Smit
B123ABC 1313 Mocking Bird Lan
B123ABC PO BOX 455
C123ABC Concord CA 9172
I'd like to be able to combine the data to look like this
License FName LName Primary Owner? Address1 Address2 City State Zi
123ABC John Smith YES PO BOX 4554 1313 Mocking... Concord CA 9172
123ABC Delores Smith NO PO BOX 4554 1313 Mocking... Concord CA 9172
Can anyone help
Thank you
Cowdog Ga
I have a text file that comes back from a municipality. It contains license plates, names, addresses, etc. I am able to automatically load the data and to split it into fields (it's fixed width, so not that hard). The file comes back with a type (A) for names, (B) for addresses, (C) for City, State, Zip on separate lines. Each type only includes the license plate to link them together
My problem is that the record types may contain 2 or more rows, for different vehicle owners or different addresses. Like this
A123ABC John Smith
A123ABC Delores Smit
B123ABC 1313 Mocking Bird Lan
B123ABC PO BOX 455
C123ABC Concord CA 9172
I'd like to be able to combine the data to look like this
License FName LName Primary Owner? Address1 Address2 City State Zi
123ABC John Smith YES PO BOX 4554 1313 Mocking... Concord CA 9172
123ABC Delores Smith NO PO BOX 4554 1313 Mocking... Concord CA 9172
Can anyone help
Thank you
Cowdog Ga