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

Can I convert the data in a table with one row to a table with multiple rows? What are their coding?

 

Original table:

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16

 

Table that I want:

1    2   3   4

5    6   7   8

9   10 11 12

13 14 15 16

 


DSC_0834.JPG
1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

In this case an Array is probably your best bet, with an explicit OUTPUT statement. Here's a quick example with two loops.

 

data want;
set have;

array vals(*) val1-val16;
array new(*) new1-new4;

do i=1 to 4;

    do j=1 to 4;
         new(j) = vals(j*i);
    end;

output;

end;
run;

 


@Jonathanzz wrote:

Can I convert the data in a table with one row to a table with multiple rows? What are their coding?

 

Original table:

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16

 

Table that I want:

1    2   3   4

5    6   7   8

9   10 11 12

13 14 15 16

 


 

View solution in original post

6 REPLIES 6
art297
Opal | Level 21
data have;
  input var1-var4 @@;
  cards;
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
;

Art, CEO, AnalystFinder.com

 

Reeza
Super User

In this case an Array is probably your best bet, with an explicit OUTPUT statement. Here's a quick example with two loops.

 

data want;
set have;

array vals(*) val1-val16;
array new(*) new1-new4;

do i=1 to 4;

    do j=1 to 4;
         new(j) = vals(j*i);
    end;

output;

end;
run;

 


@Jonathanzz wrote:

Can I convert the data in a table with one row to a table with multiple rows? What are their coding?

 

Original table:

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16

 

Table that I want:

1    2   3   4

5    6   7   8

9   10 11 12

13 14 15 16

 


 

ilikesas
Barite | Level 11

I guess that one way for this approach would be:

 

data want (keep = new1-new4);
set have;
array vals(*) var1-var16;
array new(*) new1-new4;

do j = 1 to floor(dim(vals)/4);
  do i = 1 to 4;
    new(i) = vals((j-1)*4 + i);
  end;
  output;
end;
run;
Ksharp
Super User

It is very easy for IML code.

 

data have;
  input var1-var4 @@;
  cards;
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
;

proc iml;
use have;
read all var _all_ into x;
close;

want=shape(x,0,4);

create want from want;
append from want;
close;
quit;
CiCi
Fluorite | Level 6

I would probably

 

1. add a new observation with values like 1,2,3,4,1,2,3,4,1,2,3,4,....

2. use Proc Transpose

 

When your dataset is large, this can be super efficiant by avoiding loops.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 6 replies
  • 2272 views
  • 6 likes
  • 6 in conversation