I'm having some trouble figuring out the best implementation
I have data in file in this format: |serial #|machine_name|machine_owner|
If a machine_owner has multiple machines, I'd like the machines displayed in a comma separated list in the field. so that.
|1234|Fred Flinstone|mach1| |5678|Barney Rubble|mach2| |1313|Barney Rubble|mach3| |3838|Barney Rubble|mach4| |1212|Betty Rubble|mach5|
Looks like this:
|Fred Flinstone|mach1| |Barney Rubble|mach2,mach3,mach4| |Betty Rubble|mach5|
Any hints on how to approach this would be appreciated.