BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Ranjeeta
Pyrite | Level 9
Proc sql;
Create table pts60D1 as
Select * , Min(days_to_servdate) as HC_first
From pts60D 
Group by key_enc
Having min(days_to_servdate)
;quit;

I have one question how would I add a condition to select the min date after ignoring the negative values 

1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26

@Ranjeeta wrote:
I have one question how would I add a condition to select the min date after ignoring the negative values 

I don't see a variable named date.

 

Where would the negative values be (what variable)?

--
Paige Miller

View solution in original post

3 REPLIES 3
PaigeMiller
Diamond | Level 26

@Ranjeeta wrote:
I have one question how would I add a condition to select the min date after ignoring the negative values 

I don't see a variable named date.

 

Where would the negative values be (what variable)?

--
Paige Miller
Ranjeeta
Pyrite | Level 9
it is days toservdate
PaigeMiller
Diamond | Level 26
Proc sql;
Create table pts60D1 as
Select * , Min(days_to_servdate) as HC_first
From pts60D(where=(days_to_servdate>=0))
Group by key_enc
Having days_to_servdate=min(days_to_servdate)
;quit;
--
Paige Miller

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 418 views
  • 3 likes
  • 2 in conversation