BookmarkSubscribeRSS Feed
Verlea
Calcite | Level 5

I have effective and expiration dates in a dataset where I have transposed them so all for the key I have created are in a single row in the dataset.  I want to be able to compare all of the dates to see if there is a break in the dates.  My end result should be if I can combine the dates in the row to make one effective date and one expiration date.  I can't use MIN(Eff_Dt) or MAX(Exp_Dt) because I might miss breaks in the dates.

I have attached a few examples in an excel spreadsheet.

 

1 REPLY 1
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Hi,

 

Welcome to the community.  First, I advise to post anything you need to, test data and code directly into the post, I wouldnt download Office files from the net as security risk.

 

From what you post, I question the need to transpose the data to find missing periods:

data want;
  set have;
  if current_date ne lag(current_date)+1 then flag="Y";
run;

So in this example, the lag lookks back one record and if its not 1 day more than the lag value sets a flag.  No need to transpose to do this.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 982 views
  • 0 likes
  • 2 in conversation