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

Hi all. As a beginner working in SAS I now encountered a problem with my where statement:

 

data pop1:

set DTSDCCG;

where dato_diagnose NE Is Missing and dato_diagnose < invi_sendtdt1;

run;

 

the problem seems to be about the first part of the where statement I want to exclude all the dato_diagnose that have no value and include all where dato_diagnose<invisendt1.

 

I cannot find the mistake. Can you help me

1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26
where not missing(dato_diagnose) and dato_diagnose < invi_sendtdt1;
--
Paige Miller

View solution in original post

1 REPLY 1
PaigeMiller
Diamond | Level 26
where not missing(dato_diagnose) and dato_diagnose < invi_sendtdt1;
--
Paige Miller

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 435 views
  • 0 likes
  • 2 in conversation