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?
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.