Hello,
Simply put, I have a large sheet of data that is organized one way, and I need to organize it into a specific format.
The data I have looks like this, where there are two columns(separated by "/"):
UniqueID/Product+email
23456 / productx
23456/producty
23456/ productz
23456/ email234@email.com
23457/ productw
23457/ productz
23457/ email234567@email.com
23457/ email23567@email.com
I also have a version that looks like this, where there are 3 columns and emails are in the third (columns separated by "/"):
UniqueID Product Email
23456 /productx
23456 / producty
23456 / productz
23456// email234@email.com
23457 / productw
23457/ productz
23457// email234567@email.com
23457// email23567@email.com
Ultimately, I NEED the spreadsheet to look like this (in csv format):
email234@email.com,productx,producty,productz
email234567@email.com,productw,productz
email23567@email.com,poductw,productz
Is there an easy way to do this that I can't think of? Or do I need to convert into this format manually? There is close to 1000 lines of this data so I hope the answer is not the latter!
Thanks!
Simply put, I have a large sheet of data that is organized one way, and I need to organize it into a specific format.
The data I have looks like this, where there are two columns(separated by "/"):
UniqueID/Product+email
23456 / productx
23456/producty
23456/ productz
23456/ email234@email.com
23457/ productw
23457/ productz
23457/ email234567@email.com
23457/ email23567@email.com
I also have a version that looks like this, where there are 3 columns and emails are in the third (columns separated by "/"):
UniqueID Product Email
23456 /productx
23456 / producty
23456 / productz
23456// email234@email.com
23457 / productw
23457/ productz
23457// email234567@email.com
23457// email23567@email.com
Ultimately, I NEED the spreadsheet to look like this (in csv format):
email234@email.com,productx,producty,productz
email234567@email.com,productw,productz
email23567@email.com,poductw,productz
Is there an easy way to do this that I can't think of? Or do I need to convert into this format manually? There is close to 1000 lines of this data so I hope the answer is not the latter!
Thanks!