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

Hi SAS Community,

 

I have a total of 2500 unique customer numbers and I want to include the variable 'week' in each customer observation. I will outline this into tabular format below.

 

What do I have now?

Customer ID
EDDY
CHRIS
PETER
MALCOMN
DAVID
EVANS

 

What do I want?

Customer ID Week
EDDY 1
EDDY 2
EDDY 3
EDDY 4
EDDY 5
EDDY 6
EDDY 7
EDDY
EDDY 52
CHRIS 1
CHRIS 2
CHRIS 3
CHRIS 4
CHRIS 5
CHRIS 6
CHRIS 7
CHRIS
CHRIS 52
 
EVANS 1
EVANS 2
EVANS 3
EVANS 4
EVANS 5
EVANS 6
EVANS 7
EVANS
EVANS 52

 

Appreciate your help! Thanks.

 

Dave

1 ACCEPTED SOLUTION

Accepted Solutions
stat_sas
Ammonite | Level 13

Please try this.

 

data want;
set have;
do week=1 to 52;
    output;
end;
run;

View solution in original post

1 REPLY 1
stat_sas
Ammonite | Level 13

Please try this.

 

data want;
set have;
do week=1 to 52;
    output;
end;
run;

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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
  • 1 reply
  • 1327 views
  • 2 likes
  • 2 in conversation