I have a .csv list of emails + names. Each name can have 1-3 emails along with it (which are currently separated by a comma). I need to convert this into a .csv list where its 1 name and 1 email.
Here is example:
John Smith,[email protected],[email protected],[email protected]
Taylor Smith,[email protected]
Jack Smith,[email protected],[email protected]
...(and there are like 10k more rows)
How can I automatically convert this to:
John Smith,[email protected]
John Smith,[email protected]
John Smith,[email protected]
Taylor Smith,[email protected]
Jack Smith,[email protected]
Jack Smith,[email protected]
The main problem here attaching the name to separate rows of the emails that were intially with that name.
I appreciate any help - seems like an easy task, but was stuck on this for few days already, Thanks.