BookmarkSubscribeRSS Feed
jessho
Calcite | Level 5

Hi all, would love help from anyone using SAS enterprise.  Used to code in SAS 9.4 but switched jobs and having trouble now creating new variables in enterprise.

 

Showing code below to create new variable rx_given from existing vartiables rx_code.... any sense of why I keep getting errors that variable does not exist?  Used to work in other version of SAS (only difference is I cannot get into permanent library in enterprise).


data=WORK.PSY;
set work.psy;

If sum (rxcode_1, rxcode_2, rxcode_3, rxcode_4, rxcode_5, rxcode_6, rxcode_7)>0 then rx_given=1;
else rx_given=0;


run;

1 REPLY 1
novinosrin
Tourmaline | Level 20

instead of

data=WORK.PSY;

 

syntax should be

 

data WORK.PSY;

 

Also run a proc contents to determine whether rxcode_1, rxcode_2, rxcode_3, rxcode_4, rxcode_5, rxcode_6, rxcode_7 variables exist

 

The report will show you the metadata contents about the dataset

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 434 views
  • 2 likes
  • 2 in conversation