I'm new to SAS and found myself having to use it for my new job. So this is a basic question.
I have a table which looks like this:
COMPANY | Employee
--------|----------
COMP1 | @,@,@,@
COMP2 | @
COMP3 | @,@
...
Every @ is an email adress - divided by commas - of an employee in the company in the first row. Now I want to use Data step to give every email its own row. Each with the corresponding company name in the first row. Like this:
COMPANY | Employee
--------|----------
COMP1 | @
COMP1 | @
COMP1 | @
COMP1 | @
COMP2 | @
COMP2 | @
...
I hope this is enough to go on.
Thank you in advance Jan