Oct 26, 2008 #1 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.
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.
Oct 26, 2008 #2 ChrisW75 Programmer Dec 22, 2003 727 AU 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. Upvote 0 Downvote
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.