I have Table1 attached file in detail. I want using Proc Transpose function, have new table called Table2. --------------------------------------------------------------------------------------------------------------------------------- Table1: Month, ENROLLMENT, MAJOR_MEDICAL, PBM, Pharmacy, LB, DENTAL _ 2018-01_ 212,400 10,962 2,890 12,344 483 1,868 --------------------------------------------------------------------------------------------------------------------------------- I want this transpose become table 2 as : --------------------------------------------------------------- Table2: OHI_Plan, _2018-01_ ENROLLMENT 212,400 MAJOR_MEDICAL 10,962 PBM 2,890 Pharmacy 12,344 LB 483 DENTAL 1,868 -------------------------------------------------------------------------------- SAS code: Proc sort data = table1; By Month; Run; Proc Transpose data = table1 out=table2; name = OHI_PLan; ID Month; run; After the SAS ode run, got result table 2 only has column names, without data. OHI_Plan , _201801_ Do not know why.
... View more