BookmarkSubscribeRSS Feed
deleted_user
Not applicable
Occasionally I need to add a column to a dataset. The new column always becomes the first column. How can I control it so the column is added after the last column.
Ex:
data rfa;
format b_flag ;
label b_flag = 'Flag';
if (eFlag or cFlag) then b_flag = 1;
else b_flag=0;
run;
1 REPLY 1
Olivier
Pyrite | Level 9
The trick is to type your first statement about your new variable (either FORMAT, LABEL or the variable's formula) AFTER the reading (SET or MERGE) statement ; then your variable is added at the far right of the dataset.
If you type at least one of the statements mentionning the new variable before the reading statement, it will be created at the left of the dataset.

Regards.
Olivier

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 893 views
  • 0 likes
  • 2 in conversation