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

Hi, I am trying to perform a query that returns the dates less than/prior to the current date in the column "date". This should form a new column called "past". 

data have;
input Subject Type :$12. Date &:anydtdte.;
format date yymmdd10.;
datalines;

500   Initial    15 AUG 2017      
500   Initial    15 AUG 2017    
500   Followup   15 AUG 2018    
428   Followup    15 AUG 2018     
765   Seventh     3 AUG 2018      
500   Followup    3 JUL 2018      
428   Initial     3 JUL 2017    
765   Initial     20 JUL 2019   
610   Third       20 AUG 2019    
610   Initial     17 Mar 2018    
;

1 ACCEPTED SOLUTION

Accepted Solutions
PGStats
Opal | Level 21

past = date < today();

PG

View solution in original post

1 REPLY 1
PGStats
Opal | Level 21

past = date < today();

PG

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

How to connect to databases in SAS Viya

Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.

Find more tutorials on the SAS Users YouTube channel.

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