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-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

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 lock in 2025 pricing—just $495!

Register now

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