Hi guys, I'm new to SAS and I'm trying to obtain the distinct values for every variable in a large table (+300 Columns), for that reason I can't do it manually with every single column. I have this Var1 Var2 Var3 a 1 1 b 1 2 b 2 3 a 3 4 I want to get something like this: Var1 a,b Var2 1,2,3 Var3 1,2,3,4 I tried doing an iterative process using a do within a proc sql to at least get vectors for the unique values. Thanks a lot!!
... View more