Major Sorting Issue

  • Thread starter Thread starter noobdisaster
  • Start date Start date
N

noobdisaster

Ok, this will not be easy to explain, but I will try my best. I hav
data that is listed something like this:

Job=123
time=345
name=john doe
department=payment
blue
green badge

This data is all in one column and there may be more lines (not al
entries have four rows as provided in the example, some may have 5, 1
13, etc.) of data, and all the data is not necessarily in the sam
order. There may be hundreds of these "packets" (for lack of a bette
term). I would like to be able to split the data into columns
Example:
JOB TIME Name Department
123 345 John Doe payment

Any ideas on how this can be accomplished
 
If all the rows have a unique id ("xxx=") in front of each line and the number
of those id's is less than 257, it could be done.
 
Back
Top