BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Nancy05
Quartz | Level 8

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

1 ACCEPTED SOLUTION

Accepted Solutions
6 REPLIES 6
Reeza
Super User

Where not missing(variable);

 

SAS treats null and blanks/missing the same in most cases. 

Nancy05
Quartz | Level 8

Hi Reeze,

 

Thanks for the reply.

 

Where not missing(variable); 

does seems work; However,

 

 

Where variable ne ' ';

works.

 

 

Thank you anyway!

Nancy

 

 

Reeza
Super User

Yes it will, for character variables. 

For numeric you use

 

where variable ne .;

 

Not Missing works for either character or numeric. 

Nancy05
Quartz | Level 8

How about Date type variable?

Reeza
Super User

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.

Nancy05
Quartz | Level 8

Okay. Thank you for your reply!

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 6 replies
  • 178113 views
  • 5 likes
  • 2 in conversation