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

Hi,

 

I want to write a code for the following listing using RWI:

 

 

  Group     Name    Age  Sex    

    grp1       n1          a1     s1

                  n2          a2     s2

                  n3          a3     s3

 

   grp2        n4         a4      s4

                  n5         a5      s5

                  

 

I am getting the output, however, the grp variable is repeating for all observations, whereas I want it only for the first observation in the group.

  

1 ACCEPTED SOLUTION

Accepted Solutions
Cynthia_sas
SAS Super FREQ

Hi,

  Have you tried BY group processing... so that your row for every obs would be something like this:

 

  ** row for every obs;
      obj.row_start(); 
        if first.byvar then obj.format_cell(data: byvar ); 
	  else obj.format_cell(text: " ");
        obj.format_cell(data: var2); 
        obj.format_cell(data: var3); 
        . . . more code for more variables . . .
        obj.format_cell(data: var??); 
 
      obj.row_end(); 

 

You would need to make sure that the data was in order and you had a BY statement in your DATA step program.

 

cynthia

View solution in original post

1 REPLY 1
Cynthia_sas
SAS Super FREQ

Hi,

  Have you tried BY group processing... so that your row for every obs would be something like this:

 

  ** row for every obs;
      obj.row_start(); 
        if first.byvar then obj.format_cell(data: byvar ); 
	  else obj.format_cell(text: " ");
        obj.format_cell(data: var2); 
        obj.format_cell(data: var3); 
        . . . more code for more variables . . .
        obj.format_cell(data: var??); 
 
      obj.row_end(); 

 

You would need to make sure that the data was in order and you had a BY statement in your DATA step program.

 

cynthia

sas-innovate-wordmark-2025-midnight.png

Register Today!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.


Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1042 views
  • 1 like
  • 2 in conversation