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;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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.

SAS Training: Just a Click Away

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

Browse our catalog!

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