BookmarkSubscribeRSS Feed
teja5959
Obsidian | Level 7

Data Have ;

sub           no          stdt                           dtc                          epoch                                           

101           1          2021-06-22              2021-06-17         SCREENING                                     

101           2          2021-06-22              2021-06-22         SCREENING

101           3          2021-06-22             2021-07-06          BLINDED TREATMENT

 

102           1        2021-07-12               2021-06-14          SCREENING

102           2        2021-07-12               2021-07-26          BLINDED TREATMENT

102           3       2021-07-12                2021-07-26          BLINDED TREATMENT

 

I want data 

sub           no          stdt                           dtc                          epoch                                  flg

101           1          2021-06-22              2021-06-17         SCREENING                             ""

101           2          2021-06-22              2021-06-22         SCREENING                             Y

101           3          2021-06-22             2021-07-06          BLINDED TREATMENT            ""

 

102           1        2021-07-12               2021-06-14          SCREENING                             Y

102           2        2021-07-12               2021-07-26          BLINDED TREATMENT            ""

102           3       2021-07-12                2021-07-26          BLINDED TREATMENT            ""

 

4 REPLIES 4
ballardw
Super User

What are the rules involved?

 


@teja5959 wrote:

Data Have ;

sub           no          stdt                           dtc                          epoch                                           

101           1          2021-06-22              2021-06-17         SCREENING                                     

101           2          2021-06-22              2021-06-22         SCREENING

101           3          2021-06-22             2021-07-06          BLINDED TREATMENT

 

102           1        2021-07-12               2021-06-14          SCREENING

102           2        2021-07-12               2021-07-26          BLINDED TREATMENT

102           3       2021-07-12                2021-07-26          BLINDED TREATMENT

 

I want data 

sub           no          stdt                           dtc                          epoch                                  flg

101           1          2021-06-22              2021-06-17         SCREENING                             ""

101           2          2021-06-22              2021-06-22         SCREENING                             Y

101           3          2021-06-22             2021-07-06          BLINDED TREATMENT            ""

 

102           1        2021-07-12               2021-06-14          SCREENING                             Y

102           2        2021-07-12               2021-07-26          BLINDED TREATMENT            ""

102           3       2021-07-12                2021-07-26          BLINDED TREATMENT            ""

 


 

tarheel13
Rhodochrosite | Level 12

is it the last non missing screening visit? 

ballardw
Super User

@tarheel13 wrote:

is it the last non missing screening visit? 


Do you have any missing "Epoch" values? (If that is how to tell if a visit is screening or not)

 

s_lassen
Meteorite | Level 14

If what you want is to flag the screenings that come before another instance (g.e. blinded tratment), it can be done like this:

data want;
  set have;
  by sub epoch notsorted;
  if last.epoch and not last.sub and epoch='SCREENING' then
    flag='Y';
run;

sas-innovate-white.png

Missed SAS Innovate in Orlando?

Catch the best of SAS Innovate 2025 — anytime, anywhere. Stream powerful keynotes, real-world demos, and game-changing insights from the world’s leading data and AI minds.

 

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
  • 4 replies
  • 3593 views
  • 2 likes
  • 4 in conversation