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;

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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