hi,
The data set WORK.CAR_SALES2 may be incomplete. When this step was stopped there were 0
observations and 1 variables.
i am geeting this error in log window ?
what should i do ?
this is my code :
DATA car_sales2;
set=Prateek.car_sales;
if_4_year_resale value is missing or Price_in_thousands is missing then delete;
run;
This line is invalid SAS syntax:
if_4_year_resale value is missing or Price_in_thousands is missing then delete;
You are missing a space after the if, the word value appears incorrectly. You have not used the missng function correctly. Maybe something like:
if missing(_4_year_resale_value) or missing(price_in_thousands) then delete;
One more item you need to correct, even if it did not generate an error message: the SET statement does not use an equal sign. The correct version:
set Prateek.car_sales;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.