Hi, Your column statement should be written as the following! You can rename SBP and DBP using the define statement. title "Blood Pressure Summaries by Race"; proc report data=hw; column RaceCd N ("Average Pressures" SBP DBP ), (MEAN STD) ; define RaceCd / group ; define SBP / ANALYSIS MEAN STD format= 4.1 "Systolic"; define DBP / ANALYSIS MEAN STD format= 4.1 "Diastolic"; format RaceCd $RaceCdf.; rbreak After/ Summarize; run;
... View more