- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How to expand values for a field to multiple lines?
adolan
New Member
07-20-2015
06:27 AM
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
joe@x.com,jane@y.com
joe@x.com,jane@y.com;bill@y.com
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
joe@x.com,jane@y.com
joe@x.com,jane@y.com
joe@x.com,bill@y.com
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

woodcock
Esteemed Legend
07-20-2015
06:52 AM
You have to make it a multivalued
field first:
... | makemv delim=";" destination | mvexpand destination
