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?
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.