BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
walterwang
Obsidian | Level 7

data have;

a=1;

b=2;

c=3;

output;

a=2;

b=1;

c=2;

output;

run;

proc format;

value sex 1="Males" 2="Females" ;

run;

proc report data=have nowd;

define a / display '' format=sex.;

define b / display 'b';

run;

 

I want add a row before the row "male"

and with text "sex" up "male."

The results is

  b c
Males23
Females1

2

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User

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

2 REPLIES 2
andreas_lds
Jade | Level 19

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.

Ksharp
Super User

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;

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

Mastering the WHERE Clause in PROC SQL

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.

Discussion stats
  • 2 replies
  • 3228 views
  • 0 likes
  • 3 in conversation