BookmarkSubscribeRSS Feed
pamelisa
Fluorite | Level 6

Hi!

 

am new to SAS and stuck.  trying to get a subset of my data using this code:

data  sasuser.op2;
set sasuser.op
if DEPRES = 1;
run;
proc freq;
tables DEPRES;
run;

 

4 REPLIES 4
Reeza
Super User

@pamelisa wrote:

Hi!

 

am new to SAS and stuck.  trying to get a subset of my data using this code:

data  sasuser.op2;
set sasuser.op
if DEPRES = 1;
run;
proc freq;
tables DEPRES;
run;

 

 

You forgot a semicolon after the SET statement.

 

Please include your log and a detailed explanation of what your problem is....you never actually say what happens or what's not working so I'm guessing at the issue right now.

art297
Opal | Level 21

Of course, if you don't actually need the subset file, the following would run faster:

proc freq data=sasuser.op (where=(DEPRES = 1));
  tables DEPRES;
run;

Art, CEO, AnalystFinder.com

 

pamelisa
Fluorite | Level 6
Thank you!!
WarrenKuhfeld
Rhodochrosite | Level 12

Your SET statement is missing a semicolon.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to connect to databases in SAS Viya

Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 4 replies
  • 843 views
  • 2 likes
  • 4 in conversation