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

Hello!

 

I have a list of dates, lets say:

 

01Jan2017

01Feb2017

01Mar2017

 

And I have a list of teams, lets say:

 

Team_1

Team_2

Team_3

 

I am trying to create a data set that I can 'hang' further data from that would look like this:

 

Date                Team

01Jan2017      Team_1

01Jan2017      Team_2

01Jan2017      Team_3

01Feb2017      Team_1

01Feb2017      Team_2

01Feb2017      Team_3

etc.......

1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

Let's say you have this information in SAS data sets named DATE_DATA and TEAM_DATA:

 

proc sql;

create table want as select * from date_data, team_data;

quit;

View solution in original post

3 REPLIES 3
Astounding
PROC Star

Let's say you have this information in SAS data sets named DATE_DATA and TEAM_DATA:

 

proc sql;

create table want as select * from date_data, team_data;

quit;

Ksharp
Super User

proc sql;

create table want as

select *

 from date , team ;

quit;

mauley
Fluorite | Level 6

Thank YOU!

 

I was having a complete brain block!

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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
  • 3 replies
  • 1059 views
  • 1 like
  • 3 in conversation