BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
sas_Forum
Calcite | Level 5

data l;
input age  no id$;
cards;
4 1 nani
5 2   
6 3 rja
run;

data l2 l3;
set l;
if id ne " " then  output l3;
else output l2;
run;

if the id =" " then in dataset l2 is getting 0 obs but the values age and no is not blank i want the output l2

output

age  no id

5 2 

1 ACCEPTED SOLUTION

Accepted Solutions
art297
Opal | Level 21

Nothing wrong with your code!  Your problem is in creating file L .. it is only reading in two records.  Try your code with the following:

data l;

  infile cards truncover;

  input age  no id$;

  cards;

4 1 nani

5 2   

6 3 rja

run;

View solution in original post

1 REPLY 1
art297
Opal | Level 21

Nothing wrong with your code!  Your problem is in creating file L .. it is only reading in two records.  Try your code with the following:

data l;

  infile cards truncover;

  input age  no id$;

  cards;

4 1 nani

5 2   

6 3 rja

run;

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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