jackandrew
Technical User
I have a program that creates many workfiles in this order:
1 2
3 4
...
9 10
How do I get them into this order:
1
2
.
.
.
9
10
I want to use a macro so I can update and merge multiple work files quickly.
It is the same as:
data a; input var1 @@;
datalines;
1 2
3 4
...
9 10
but without the datalines section, as the data is already in SAS as a work file
1 2
3 4
...
9 10
How do I get them into this order:
1
2
.
.
.
9
10
I want to use a macro so I can update and merge multiple work files quickly.
It is the same as:
data a; input var1 @@;
datalines;
1 2
3 4
...
9 10
but without the datalines section, as the data is already in SAS as a work file