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

Hello Experts,

 

I am having 3 dataset under TEMPO library.

Dataset 1 name: Temp1 has 3 variables

Dataset 2 name: Temp2 has 4 variables

Dataset 3 name: Temp3 has 5 variables

 

In my new dataset called FINAL. I am having two variable names and i want all the variable names from Temp1,Temp2 and Temp2 dataset to be observation of this FINAL dataset.

 

I  want my output like this

 

Variable_Name Dataset_Name
Name Temp1
ID Temp1
Amount Temp1
Address Temp2
SSN Temp2
Product Temp2
Discount Temp2
MRP Temp3
Cust_id Temp3
Ref Temp3
Outstanding_amt Temp3
status Temp3

 

Thanks in Advance

 

1 ACCEPTED SOLUTION

Accepted Solutions
AMSAS
SAS Super FREQ

Hi @_el_doredo 

You have a couple of simple options:

  1. PROC CONTENTS / PROC DATASETS
  2. Dictionary Tables

Here's an example

/* Create sample data */
data temp1 (keep=temp1var1 temp1var2) temp2(keep=temp2var1 temp2var2) temp3 (keep=temp3var1 temp3var2);
	temp1var1=1 ;
	temp1var2="test" ;
	temp2var1=1 ;
	temp2var2="test" ;
	temp3var1=1 ;
	temp3var2="test" ;

	output temp1 temp2 temp3 ;
run ;

data work.want ;
	set sashelp.vcolumn ;
	where libname="WORK" and memname in ("TEMP1","TEMP2","TEMP3") ;
run ;

View solution in original post

2 REPLIES 2
AMSAS
SAS Super FREQ

Hi @_el_doredo 

You have a couple of simple options:

  1. PROC CONTENTS / PROC DATASETS
  2. Dictionary Tables

Here's an example

/* Create sample data */
data temp1 (keep=temp1var1 temp1var2) temp2(keep=temp2var1 temp2var2) temp3 (keep=temp3var1 temp3var2);
	temp1var1=1 ;
	temp1var2="test" ;
	temp2var1=1 ;
	temp2var2="test" ;
	temp3var1=1 ;
	temp3var2="test" ;

	output temp1 temp2 temp3 ;
run ;

data work.want ;
	set sashelp.vcolumn ;
	where libname="WORK" and memname in ("TEMP1","TEMP2","TEMP3") ;
run ;

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!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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