hi,
I am trying to add a column to an existing table and I want al, the rows in the column to have a value 1
i used this syntax, but it didn't work;
newcolumn = 1
any help?
How about:
data want;
set sashelp.class;
retain newcolumn 1;
run;
HTH,
Art
Your suggestion sounds like it should have worked (although using RETAIN to set a default value is probably more efficient), e.g.
data mydata;
set mydata;
newcolumn = 1;
run;
or
data mydata;
set mydata;
retain newcolumn 1;
run;
Are you getting an error of some kind?
Thanks DF, your response helped me spot my error.
It is fine now.
How about:
data want;
set sashelp.class;
retain newcolumn 1;
run;
HTH,
Art
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.