Hi, Lets say I have the following table : Name Date Source Bob 2012-01-01 test1 Bob 2012-01-02 test1 Bob 2012-01-03 test2 Alex 2012-02-02 test5 Alex 2012-02-03 test5 What is the SAS procedure to obtain the following table : Name Source Bob test1 - 2012-01-01, test1 - 2012-01-02, test2 - 2012-01-03 Alex test5 - 2012-02-02, test5 2012-02-03 To be more specific, I want to concatenate source & " - " & date and for each concatenated sources and date, I want to separate them with ", ". Is this something that can be done in SAS? Thank you for your help and time.
... View more