Hi,
I have a field that I want to expand to multiple lines (it's email transactions), so I have a CSV of:
source,destination
[email protected],
[email protected]
[email protected],
[email protected];
[email protected]
I want to expand this to 3 lines, which I think mvexpand should do, but it doesn't work and I can't figure out to tell it what the delimiter (";") is.
Desired:
source,destination
[email protected],
[email protected]
[email protected],
[email protected]
[email protected],
[email protected]
... View more