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

I'm aware that INTCK counts the number of intervals between two periods, but I'd like to get a truncated version of the actual count (i.e. 12 rather than 12.3 or 12.7).

 

I think this code does it but I'm wonder if there is function that would do the same rather than multiple lines of code

 

data _null_;
format s_dt l_dt alt_end date9.;
s_dt = mdy(12,31,2008);
l_dt = mdy(1,1,2010);
months = intck('month',s_dt,l_dt);
alt_end = intnx('month',s_dt,months,'same');
if l_dt lt alt_end then trunc_month=months-1;
else trunc_month=months;
putlog _all_;
run;

 

 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
Patrick
Opal | Level 21

I believe you're looking for the intck() continuous method.

data test;
  format s_dt l_dt alt_end date9.;
  s_dt = mdy(12,16,2008);
  l_dt = mdy(1,15,2010);
  months_1 = intck('month',s_dt,l_dt);
  months_2 = intck('month',s_dt,l_dt,'c');
  alt_end  = intnx('month',s_dt,months_2,'same');
  output;
  s_dt = mdy(12,15,2008);
  l_dt = mdy(1,15,2010);
  months_1 = intck('month',s_dt,l_dt);
  months_2 = intck('month',s_dt,l_dt,'c');
  alt_end  = intnx('month',s_dt,months_2,'same');
  output;
run;
proc print data=test; run;

Patrick_0-1706837043602.png

 

 

View solution in original post

1 REPLY 1
Patrick
Opal | Level 21

I believe you're looking for the intck() continuous method.

data test;
  format s_dt l_dt alt_end date9.;
  s_dt = mdy(12,16,2008);
  l_dt = mdy(1,15,2010);
  months_1 = intck('month',s_dt,l_dt);
  months_2 = intck('month',s_dt,l_dt,'c');
  alt_end  = intnx('month',s_dt,months_2,'same');
  output;
  s_dt = mdy(12,15,2008);
  l_dt = mdy(1,15,2010);
  months_1 = intck('month',s_dt,l_dt);
  months_2 = intck('month',s_dt,l_dt,'c');
  alt_end  = intnx('month',s_dt,months_2,'same');
  output;
run;
proc print data=test; run;

Patrick_0-1706837043602.png

 

 

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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