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

Hi ,

 

I have a dataset like below that am maintaining in excel .

AnjaliRocks_0-1592474506877.png

i need to extract week_str from this data set and and insert into another dataset which has date value which can be something between Week_Starts and Week_Ends from the above table.Can someone explaing me the logic in SAS to do the same . I am new to SAS Programming.

1 ACCEPTED SOLUTION

Accepted Solutions
s_lassen
Meteorite | Level 14

If you can allocate your Excel workbook as a SAS libname, SQL is probably the easy way to do it:

proc sql;
  create table want as select have.*,Data_Calendar.week_str
   from have left join ExcelLib.Data_Calendar
    on have.date between Data_Calendar.Week_Starts and Data_Calendar.Week_Ends;
quit;

View solution in original post

2 REPLIES 2
s_lassen
Meteorite | Level 14

If you can allocate your Excel workbook as a SAS libname, SQL is probably the easy way to do it:

proc sql;
  create table want as select have.*,Data_Calendar.week_str
   from have left join ExcelLib.Data_Calendar
    on have.date between Data_Calendar.Week_Starts and Data_Calendar.Week_Ends;
quit;

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

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