BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
aklr
Calcite | Level 5

I am trying to read an SPSS dataset into SAS using proc import and subsequently modify a few of the variables. I am relatively new to SAS and know that data modifying belongs in a data step, but I cannot seem to get the order right. If I put the data step after proc import, I lose the dataset that I imported, but if I try to put the proc import statement within a data step (like below), I get an error in the log that says that the "if" statement is used out of proper order. Please advise. Thank you!

data nida.ppi;

     proc import datafile = "SPSS dataset.sav" data = nida.ppi replace;

     if inform_r < 5 then inform = "Bio Parent";

     proc contents short;

run;

1 ACCEPTED SOLUTION

Accepted Solutions
art297
Opal | Level 21

Break the task into steps and create new datasets.  e.g.,

proc import datafile = "SPSS dataset.sav" data = nida.ppi replace;

run;

data step2;

  set nida.ppi;

  if inform_r < 5 then inform = "Bio Parent";

run;

proc contents data=step2 short;

run;

View solution in original post

1 REPLY 1
art297
Opal | Level 21

Break the task into steps and create new datasets.  e.g.,

proc import datafile = "SPSS dataset.sav" data = nida.ppi replace;

run;

data step2;

  set nida.ppi;

  if inform_r < 5 then inform = "Bio Parent";

run;

proc contents data=step2 short;

run;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1103 views
  • 0 likes
  • 2 in conversation