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

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

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