BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Vendy
Obsidian | Level 7


Hi all,

I wouold like to ask you for help with this problem.

I have list of customers and for each customer I have list of months in which this customer contacted us. I need to know in how many months a particular customer contacted us. But there is problem that I need to know only number of consecutive months from his first contact.

So I have table like this

    +---------+-------+
    | cust id | month |
    +---------+-------+
    |       1 | 2     |
    |       1 | 3     |
    |       1 | 4     |
    |       1 | 5     |
    |       1 | 8     |
    |       1 | 9     |
    |       1 | 10    |
    |       1 | 11    |
    |       1 | 12    |
    +---------+-------+



And I need to add column like this

    +---------+-------+-------+
    | cust id | month | flg   |
    +---------+-------+-------+
    |       1 | 2     | 1     |
    |       1 | 3     | 1     |
    |       1 | 4     | 1     |
    |       1 | 5     | 1     |
    |       1 | 8     | 0     |
    |       1 | 9     | 0     |
    |       1 | 10    | 0     |
    |       1 | 11    | 0     |
    |       1 | 12    | 0     |
    +---------+-------+-------+



So finally I only sum all 1 in column flg. The result will be that consumer 1 contacted us 4 times from his first contact consecutive.

I have tried use something like this but it does not work 😞 I do not know how to do that 1 will be only for fist consecutive line.

 

data test1;
     set customer_base;    
     retain month_ret;
     output;
     by cust_id month;
     month_ret = month;
run;

Data test2;
Set test1;
By cust_id;
If first.cust_id then i=1;
if month= month_ret+1 then i=1;
if month<>month_ret+1 then output;
Run;



Thank you very much

1 ACCEPTED SOLUTION

Accepted Solutions
Vendy
Obsidian | Level 7

And here is solution 🙂

 

   data have;
    infile datalines;
    input cust_id month;
    datalines;
    1 2
    1 3
    1 4
    1 5
    1 8
    1 9
    1 10
    1 11
    1 12
    ;
    run;

    data want (drop=p_month);
    set have;
    by cust_id;
    retain flg p_month;
    if first.cust_id then flg=1;
    else if month ne p_month+1 then flg=0;
    p_month=month;
    run;

 

View solution in original post

1 REPLY 1
Vendy
Obsidian | Level 7

And here is solution 🙂

 

   data have;
    infile datalines;
    input cust_id month;
    datalines;
    1 2
    1 3
    1 4
    1 5
    1 8
    1 9
    1 10
    1 11
    1 12
    ;
    run;

    data want (drop=p_month);
    set have;
    by cust_id;
    retain flg p_month;
    if first.cust_id then flg=1;
    else if month ne p_month+1 then flg=0;
    p_month=month;
    run;

 

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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
  • 890 views
  • 0 likes
  • 1 in conversation