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

I have a dataset where I want to "flag" every time a call is forwarded. It can be forwarded back and forth between the same departments, but have to count every time it occurs. A call can also be forwarded within the same department but then it shall not be flaged. When a call is received it gets an id that is "locked" until the call has ended.

I have tried to give the example below. The first four columns is what I already have.

 

iddatetimedepartmentcountflag
101-01-2020 10:00aaa11
102-01-2020 10:00bbb21
103-01-2020 10:00ccc31
104-01-2020 10:00aaa40
105-01-2020 10:00aaa51
106-01-2020 10:00ccc60
201-01-2020 10:00bbb10
202-01-2020 10:00bbb20
203-01-2020 10:00bbb30
204-01-2020 10:00bbb40
205-01-2020 10:00bbb50
301-01-2020 10:00aaa11
302-01-2020 10:00ddd20
303-01-2020 10:00ddd30
304-01-2020 10:00ddd41
305-01-2020 10:00aaa50
1 ACCEPTED SOLUTION

Accepted Solutions
gamotte
Rhodochrosite | Level 12

Hello,

 

data have;
    infile cards dlm=',';
    input id dt department $ count;

    informat dt anydtdtm20. department $3.;
    format dt datetime20. department $3.;
    cards;
1,01-01-2020:10:00:00,aaa,1
1,02-01-2020:10:00:00,bbb,2
1,03-01-2020:10:00:00,ccc,3
1,04-01-2020:10:00:00,aaa,4
1,05-01-2020:10:00:00,aaa,5
1,06-01-2020:10:00:00,ccc,6
2,01-01-2020:10:00:00,bbb,1
2,02-01-2020:10:00:00,bbb,2
2,03-01-2020:10:00:00,bbb,3
2,04-01-2020:10:00:00,bbb,4
2,05-01-2020:10:00:00,bbb,5
3,01-01-2020:10:00:00,aaa,1
3,02-01-2020:10:00:00,ddd,2
3,03-01-2020:10:00:00,ddd,3
3,04-01-2020:10:00:00,ddd,4
3,05-01-2020:10:00:00,aaa,5
;
run;

data temp;
    merge have have(firstobs=2 keep=department rename=(department=dept2));
run;

data want;
    set temp;
    by Id;

    if not last.id and dept2 ne department then flag=1;
    else flag=0;
run;

View solution in original post

5 REPLIES 5
PhilC
Rhodochrosite | Level 12

LOL each transfer takes a day.  Poor customers.

 

Is your "Want" table accurate? I think this problem will use a LAG() function on DEPARTMENT, at least.

ballardw
Super User

You will have to describe in some considerable detail a couple of things. First, how to identify a "call forward". Second, why would the first entry for ID 1 and 3, assuming the time is supposed to be sequential, be flagged when it is not for the first entry for ID 2?

 

Any rule should describe how to use the values shown.

gamotte
Rhodochrosite | Level 12

Hello,

 

data have;
    infile cards dlm=',';
    input id dt department $ count;

    informat dt anydtdtm20. department $3.;
    format dt datetime20. department $3.;
    cards;
1,01-01-2020:10:00:00,aaa,1
1,02-01-2020:10:00:00,bbb,2
1,03-01-2020:10:00:00,ccc,3
1,04-01-2020:10:00:00,aaa,4
1,05-01-2020:10:00:00,aaa,5
1,06-01-2020:10:00:00,ccc,6
2,01-01-2020:10:00:00,bbb,1
2,02-01-2020:10:00:00,bbb,2
2,03-01-2020:10:00:00,bbb,3
2,04-01-2020:10:00:00,bbb,4
2,05-01-2020:10:00:00,bbb,5
3,01-01-2020:10:00:00,aaa,1
3,02-01-2020:10:00:00,ddd,2
3,03-01-2020:10:00:00,ddd,3
3,04-01-2020:10:00:00,ddd,4
3,05-01-2020:10:00:00,aaa,5
;
run;

data temp;
    merge have have(firstobs=2 keep=department rename=(department=dept2));
run;

data want;
    set temp;
    by Id;

    if not last.id and dept2 ne department then flag=1;
    else flag=0;
run;

tlianee
Calcite | Level 5

@PhilC the datetimes are only examples. I have not had success with getting lag to work as the same department can be on the first line in the next id.

@ballardw it is what happens to the line if the call that should trigger a flag. Since the next line in ID1 has another deperatment the first line get a flag as this call is transfered. ID 2 all the lines are within the same department and should therefore not get a flag, which is the same with observation 2 and 3 in ID 3 where these are within the same department but the fourth should get a flag as the next line is a diffenrent department. This also means that the last observation per ID never can have a flag.

@gamotte Thanks...I'll look into your solution.

Tom
Super User Tom
Super User

It is not clear to me what your logic is but your example makes it look like you want to flag the LAST observation for a department except when it is also the last observation for the ID.

data have ;
  input id datetime :$16. department :$10. count flag ;
cards;
1 01-01-2020.10:00 aaa 1 1
1 02-01-2020.10:00 bbb 2 1
1 03-01-2020.10:00 ccc 3 1
1 04-01-2020.10:00 aaa 4 0
1 05-01-2020.10:00 aaa 5 1
1 06-01-2020.10:00 ccc 6 0
2 01-01-2020.10:00 bbb 1 0
2 02-01-2020.10:00 bbb 2 0
2 03-01-2020.10:00 bbb 3 0
2 04-01-2020.10:00 bbb 4 0
2 05-01-2020.10:00 bbb 5 0
3 01-01-2020.10:00 aaa 1 1
3 02-01-2020.10:00 ddd 2 0
3 03-01-2020.10:00 ddd 3 0
3 04-01-2020.10:00 ddd 4 1
3 05-01-2020.10:00 aaa 5 0
;

data want;
  set have ;
  by id department notsorted;
  want=last.department and not last.id;
run;

proc print;
run;

proc compare data=want;
  var flag;
  with want;
run;
                                      The COMPARE Procedure
                              Comparisons of variables in WORK.WANT
                                          (Method=EXACT)

                                        Data Set Summary

                   Dataset             Created          Modified  NVar    NObs

                   WORK.WANT  30DEC20:10:38:27  30DEC20:10:38:27     6      16

NOTE: No unequal values were found. All values compared are exactly equal.

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

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
  • 5 replies
  • 10712 views
  • 1 like
  • 5 in conversation