data have;
a=1;
b=2;
c=3;
output;
a=2;
b=1;
c=2;
run;
proc format;
value sex 1="Males" 2="Females" ;
proc report data=have nowd;
define a / display '' format=sex.;
define b / display 'b';
I want add a row before the row "male"
and with text "sex" up "male."
The results is
2
proc format; value sex 1="Males" 2="Females" ; run; proc report data=have nowd; define a / display '' format=sex.; define b / display 'b'; compute before ; line @1 'sex'; endcomp; run;
View solution in original post
Check the documentation of the line-statement in proc report. Using it has been explained in so many papers and posts, you surely find something appropriate.
April 27 - 30 | GAYLORD TEXAN
Register now to lock in early bird pricing through February 25!
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.