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?
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.