SAS Programming

DATA Step, Macro, Functions and more
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-white.png

Join us for our biggest event of the year!

Four days of inspiring keynotes, product reveals, hands-on learning opportunities, deep-dive demos, and peer-led breakouts. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

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