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

Hi,

I would like to increment the week number by 1 every 7 days, starting from Apr 4 to "some end date".

My dataset looks like this:

Datepcode
4-Apr-14V5C0B3
4-Apr-14V5C0B4
5-Apr-14V5C0B3
5-Apr-14V5C0B4
6-Apr-14V5C0B3
6-Apr-14V5C0B4
7-Apr-14V5C0B3
7-Apr-14V5C0B4
8-Apr-14V5C0B3
8-Apr-14V5C0B4
9-Apr-14V5C0B3
9-Apr-14V5C0B4
10-Apr-14V5C0B3
10-Apr-14V5C0B4
11-Apr-14V5C0B3
11-Apr-14V5C0B4
12-Apr-14V5C0B3
12-Apr-14V5C0B4
13-Apr-14V5C0B3
13-Apr-14V5C0B4
14-Apr-14V5C0B3
14-Apr-14V5C0B4
15-Apr-14V5C0B3
15-Apr-14V5C0B4
16-Apr-14V5C0B3
16-Apr-14V5C0B4
17-Apr-14V5C0B3
17-Apr-14V5C0B4
18-Apr-14V5C0B3
18-Apr-14V5C0B4
19-Apr-14V5C0B3
19-Apr-14V5C0B4

 

and I want it to look like this:

DatepcodeWEEK
4-Apr-14V5C0B31
4-Apr-14V5C0B41
5-Apr-14V5C0B31
5-Apr-14V5C0B41
6-Apr-14V5C0B31
6-Apr-14V5C0B41
7-Apr-14V5C0B31
7-Apr-14V5C0B41
8-Apr-14V5C0B31
8-Apr-14V5C0B41
9-Apr-14V5C0B31
9-Apr-14V5C0B41
10-Apr-14V5C0B31
10-Apr-14V5C0B41
11-Apr-14V5C0B32
11-Apr-14V5C0B42
12-Apr-14V5C0B32
12-Apr-14V5C0B42
13-Apr-14V5C0B32
13-Apr-14V5C0B42
14-Apr-14V5C0B32
14-Apr-14V5C0B42
15-Apr-14V5C0B32
15-Apr-14V5C0B42
16-Apr-14V5C0B32
16-Apr-14V5C0B42
17-Apr-14V5C0B32
17-Apr-14V5C0B42
18-Apr-14V5C0B33
18-Apr-14V5C0B43
19-Apr-14V5C0B33
19-Apr-14V5C0B43

 

Thanks in advance!

1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

I have to assume you made a slight error in your post and that April 18 would increment to week=3.  Here's a statement you could add to your DATA step:

 

week = 1 + int( (date - '04apr2014'd) / 7);

 

Good luck.

View solution in original post

2 REPLIES 2
Astounding
PROC Star

I have to assume you made a slight error in your post and that April 18 would increment to week=3.  Here's a statement you could add to your DATA step:

 

week = 1 + int( (date - '04apr2014'd) / 7);

 

Good luck.

lai302120
Calcite | Level 5

thanks!!

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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