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.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.