PROC TRANSPOSE
@BrighterWay wrote:
I'd like to transform table from :
Name PlanType PlanNum
David PlanA 10101
David PlanB 20202
David PlanC 30303
to:
Name PlanA_Num PlanB_Num PlanC_Num
David 10101 20202 30303
any thoughts? using proc sql; or data steps..
Thanks!
... View more