BookmarkSubscribeRSS Feed
Mgarret
Obsidian | Level 7

Hi—

I’m trying to pull cases which are =< to the last date of the month based on a certain date variable (DISPOSITION_DATE). The dataset contains data for all 12 months of the year so I’m not sure of to take this into account.

Proc sql;

create table want as

select distinct

var1,

var2,

var3

datepart(DISPOSITION_DATE),

from

have;

quit;

Any help is greatly appreciated!

1 REPLY 1
Reeza
Super User

It depends on the relation between your disposition date and the last date of the month.

You'll need to provide some more information on your criteria and some sample data with expected output is always helpful.

If you had a fixed date something like the following would work.

Proc sql;

create table want as

select distinct var1,  var2, var3

from have

where datepart(disposition_date) <= '31jul2012'd

;

quit;

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 1 reply
  • 695 views
  • 0 likes
  • 2 in conversation