Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to display 2 data sets?

Status
Not open for further replies.

njon315

MIS
Oct 12, 2008
5
US
Can I do this:

Proc print table1 table2;
run;

I hit an error, saying the table2 symbol is not not recognized and will be ignored.
 
No. You can't do that. :)
Syntax is wrong as well.

Code:
proc print data=table1;
run;
proc print data=table2;
run;

You need a separate proc print step for each table.

Chris
Business Analyst, Code Monkey, Data Wrangler.
SAS Guru.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top