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.
Rish
Calcite | Level 5

Hello Guru's;

I have a SAS date and want to convert it to week day of the year (for mulitple years).

For example 08JAN2009 show as '2 week of 2009'.

Can anybody please advise?

Thanks

1 ACCEPTED SOLUTION

Accepted Solutions
art297
Opal | Level 21

Sorry, I just noticed your code.  You never stipulated a variable for SAS to create.  Try something like:

data xyz;

     set web.pmrate (keep= customer datefield);

     week=week(datefield, 'v');

run;

View solution in original post

5 REPLIES 5
art297
Opal | Level 21

You could use the week function.  i.e.:

WEEK( date <, 'descriptor'> )

returns the week of year from a SAS date value. The algorithm used to calculate the week depends on the descriptor.

If the descriptor is 'U,' weeks start on Sunday and the range is to . If weeks and exist, they are only partial weeks. Week 52 can be a partial week.

If the descriptor is 'V', the result is equivalent to the ISO 8601 week of year definition. The range is to . Week is a leap week. The first week of the year, Week , and the last week of the year, Week or , can include days in another Gregorian calendar year.

If the descriptor is 'W', weeks start on Monday and the range is to . If weeks and exist, they are only partial weeks. Week 52 can be a partial week.

Rish
Calcite | Level 5

Arthur -

Tried to run the below code - giving error. Any advise please.

data xyz;

     set web.pmrate (keep= customer datefield);

     week(datefield, 'v');

run;

Thanks

art297
Opal | Level 21

what version of SAS are you using and what was the error?

Rish
Calcite | Level 5

Hi Arthur,

Following is the information:

SAS 9.2 version 4.3

error: undeclared array referenced; week.

error 22-322: syntax error, expecting one of the following: +, =.

error 76-322: syntax error, statement will be ignored.

Thanks       

art297
Opal | Level 21

Sorry, I just noticed your code.  You never stipulated a variable for SAS to create.  Try something like:

data xyz;

     set web.pmrate (keep= customer datefield);

     week=week(datefield, 'v');

run;

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

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
  • 5 replies
  • 8011 views
  • 1 like
  • 2 in conversation