BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
strik11
Calcite | Level 5
libname ashish "/folders/myfolders";
proc import datafile="/folders/myfolders/Car_sales.csv" out=Car_sales dbms=csv replace;getnames=yes;
proc copy in=work out=ashish;
select Car_sales;
proc print data=ashish.Car_sales;
IF Price_in_thousands='.' then delete;
run;


Capture.JPG

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

If you want to modify the data set you need to use a data step. 

data filtered;
set ashish.car_sales;
where not missing(price_in_thousands);
run;

 

If you want to filter the results to display in Proc print then use a where. 

 

Where not missing(price_in_thousands );

 

 

 

 

View solution in original post

2 REPLIES 2
ballardw
Super User

Proc print does not allow If or delete.

 

To show the records where a specific condition is needed use a WHERE clause:

 

WHERE Price_in_Thousands ne . ;

 

Reeza
Super User

If you want to modify the data set you need to use a data step. 

data filtered;
set ashish.car_sales;
where not missing(price_in_thousands);
run;

 

If you want to filter the results to display in Proc print then use a where. 

 

Where not missing(price_in_thousands );

 

 

 

 

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!

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
  • 2 replies
  • 1833 views
  • 2 likes
  • 3 in conversation