I have an sas query that if I have created 3 datasets, lets say named as ds1, ds2, ds3
. Now, I want to print all of them under one proc print statement, then how can we do that? Like, i want something like: proc print data = work.ds1 work.ds2 work.ds3; run;
Is there some way to do this? Please make sure that I want these to be printed in ONE OR SINGLE PROC PRINT statement.