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

Hi, is there a creative way to get week number of a dataset that has a process date that starts from March2016 to March2017.. so the frist week of March2016 is 1 and so on until 52 of the last week of March2017.  Not necessarily March, any month of the year, and if I only have 6 months then would have week 1 to week 26...etc.   Thanks

1 ACCEPTED SOLUTION

Accepted Solutions
art297
Opal | Level 21

How about:

 

data have;
  format date date9.;
  do date='1mar2016'd to '01mar2017'd;
    output;
  end;
run;

data want;
  set have;
  week=intck("week",'01mar2016'd,date);
run;

Art, CEO, AnalystFinder.com

 

View solution in original post

1 REPLY 1
art297
Opal | Level 21

How about:

 

data have;
  format date date9.;
  do date='1mar2016'd to '01mar2017'd;
    output;
  end;
run;

data want;
  set have;
  week=intck("week",'01mar2016'd,date);
run;

Art, CEO, AnalystFinder.com

 

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
  • 1 reply
  • 671 views
  • 1 like
  • 2 in conversation