Hi ,
I am new to SAS Enterprise Guid. How do I write the data clause as I only want the data set where particalar observations is not null or empty.
For example:
data mydataset;
set orion.employee;
where <employeeName is not empty or blank>?
proc print data = mydataset;
run;
How do I write empoyeeName is not empty? what is the syntaxt for not empty for blank in SAS langauge?
Thanks!
Nancy
Okay. Thank you for your reply!
Where not missing(variable);
SAS treats null and blanks/missing the same in most cases.
Hi Reeze,
Thanks for the reply.
Where not missing(variable);
does seems work; However,
Where variable ne ' ';
works.
Thank you anyway!
Nancy
Yes it will, for character variables.
For numeric you use
where variable ne .;
Not Missing works for either character or numeric.
How about Date type variable?
SAS only has two data types, numeric and character.
Dates are numeric, with a date format applied.
A date is the number of days from Jan 1, 1960
A datetime is the number of seconds from Jan 1, 1960
Hope that helps.
There can be more data types if you're using DS2 but I'm assuming that you're not. And they only exist within the DS2 step.
Okay. Thank you for your reply!
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.