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

Hello all.

I would like to complete the table on the left side with a variable time span based on the years.

I hope that you can help me.

 

SAS.png

1 ACCEPTED SOLUTION

Accepted Solutions
AhmedAl_Attar
Rhodochrosite | Level 12
To get the time_span numbers listed in the "Aim:", I think the query should be
proc sql;
create table want as
select id,year,(range(year)+1) as time_span
from have
group by id ;
quit;

View solution in original post

4 REPLIES 4
ErikLund_Jensen
Rhodochrosite | Level 12

Hi @cnn96 

I think this will do it.

First use a select to calculate the time_span for each PatientID then add the calculated value with a join. 

Note: Untested, because you didn't provide a data step to generate test data. 

 

proc sql;
  create table b as
    select distinct PatientID, count(*) as time_span
    from mylib.mytable
    group by PatientID;
quit;

proc sql;
  create table table_timespan as
    select a.*, b.time_span
    from mylib.mytable as a, b
    on a.PatientID = b.PatientID;
quit;
Ksharp
Super User
proc sql;
create table want as
select id,year,range(year) as time_span
from have
group by id ;
quit;
AhmedAl_Attar
Rhodochrosite | Level 12
To get the time_span numbers listed in the "Aim:", I think the query should be
proc sql;
create table want as
select id,year,(range(year)+1) as time_span
from have
group by id ;
quit;
cnn96
Fluorite | Level 6

Thank you very much. This way it worked the way i wanted it to.😊

SAS INNOVATE 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 4 replies
  • 379 views
  • 3 likes
  • 4 in conversation