I have built a command that uses the BREAK ON command to stop the output of duplicate field names. For example:
f.name | f.value
f.name | f.value
f.name | f.value
becomes:
f.name | f.value
| f.value
| f.value
Is there any way to have this output as:
f.name | f.value,f.value,f.value
In some instances the f.name field with have over 20 f.values associated with it.
The output will eventually be used to import into other places so I am trying to make the output as friendly as possible.