Editor's Note: Thanks to @Florent for providing an answer using PROC SQL. Technical Support also has a Usage Note that shows how to do this using a DATA step: Usage Note 8395.
Hello,
You can change the column positions by using a PROC SQL statement.
e.g:
Proc sql;
create table as
select colomn1,
colomn2,
...,
Name
from ;
quit;
I hope it helps.
Regards,
Florent
Editor's Note: Thanks to @Florent for providing an answer using PROC SQL. Technical Support also has a Usage Note that shows how to do this using a DATA step: Usage Note 8395.
Hello,
You can change the column positions by using a PROC SQL statement.
e.g:
Proc sql;
create table as
select colomn1,
colomn2,
...,
Name
from ;
quit;
I hope it helps.
Regards,
Florent
Use Proc Sql to define the position.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.