why output of this program contains no observation ? can anyone explain it to me...thanks
Given data :
money dataset has 5 observations.
people dataset has observations
My program is :
data empsal;
set money (in=money) people(in=people);
if money and people;
run;
empsal contains 0 observations...why so ? 😞
You are "setting" the second dataset After the first, there is no merge, hence:
if money and people;
Is never true, the records all come from money in the first instance, and then from people in the second, never both. Perhaps you mean to merge the data?
You are "setting" the second dataset After the first, there is no merge, hence:
if money and people;
Is never true, the records all come from money in the first instance, and then from people in the second, never both. Perhaps you mean to merge the data?
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
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.