Hi all, Does anyone let me know how to transpose a column values which has duplicates. Previously I used a table which is like below, Val1 Val2 Abc 123 Def 567 Abc 908 Ghf 543 I would like to transpose Val1 values as variables for that I wrote a code which gave me an error like. Proc transpose data=have out=want ; Id Val1; var Val2; Run; Error: The ID value " Abc" occurs twice in input data set. Later on, I used LET keyword in proc transpose but has given me only the last occurrence as you can see my data though Val1 has duplicates their corresponding values Val2 has unique values. Please help me. Thankyou.
... View more