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

Hi,

I have a dataset that I want to split based on 2 date columns. In this new column, the date for the intervening months should become the last day of that month
Example;
Start date             Enddate
03Jan2022           05may2022

 

Result:

Start date             Enddate               NewColumn
03Jan2022           05may2022        03jan2022

03Jan2022           05may2022        28feb2022

03Jan2022           05may2022        31mar2022

03Jan2022           05may2022        30apr2022

03Jan2022           05may2022        05may2022

 

Thanks for your help!

1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26

This solution assumes that the values of startdate and enddate are valid numeric SAS date values.

 

data have;
    startdate='03JAN2022'd;
    enddate='05MAY2022'd;
run;
data want;
    set have;
    diff_months=intck('month',startdate,enddate);
    do i=0 to diff_months;
        if i=0 then newcolumn=startdate;
        else if i=diff_months then newcolumn=enddate;
        else newcolumn=intnx('month',startdate,i,'e');
        output;
    end;
    drop i diff_months;
    format newcolumn date9.;
run;
--
Paige Miller

View solution in original post

1 REPLY 1
PaigeMiller
Diamond | Level 26

This solution assumes that the values of startdate and enddate are valid numeric SAS date values.

 

data have;
    startdate='03JAN2022'd;
    enddate='05MAY2022'd;
run;
data want;
    set have;
    diff_months=intck('month',startdate,enddate);
    do i=0 to diff_months;
        if i=0 then newcolumn=startdate;
        else if i=diff_months then newcolumn=enddate;
        else newcolumn=intnx('month',startdate,i,'e');
        output;
    end;
    drop i diff_months;
    format newcolumn date9.;
run;
--
Paige Miller

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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