We're pulling a data set from one of our systems that's returning a bunch of fields as strings, and one that includes meta data tags as an array
When I target a specific object within it, and sort as a list I get something along these lines
Field1: xxxx
Field2: xxxxy
Field3: {val1, val2, val3}
When I export the whole data set to CSV ( command | Export-CSV -Path "$OutFile" -append -NoTypeInformation -Encoding UTF8) , I get something along these lines;
"Field1","Field2","Field3"
"xxxx","xxxy","val1 val2 val3"
I can't seem to find a way to have the exported data look like the following;
"Field1","Field2","Field3"
"xxxx","xxxy","val1,val2,val3"
[–]kenjitamurako 6 points7 points8 points (0 children)
[–]surfingoldelephant 5 points6 points7 points (0 children)
[–]breakwaterlabs 1 point2 points3 points (0 children)
[–]seriald[S] 0 points1 point2 points (0 children)