BookmarkSubscribeRSS Feed
Perscat1
Calcite | Level 5

I have a query which creates a report  for a specified order number as follows

 

proc sql;

Select orderid, productid,orderdate,linetotal

From Salesorders

where orderid = 'A1234'

quit;

 

Now I have a list of order IDs in a dataset from here:

Select orderid from JulySales

 

I would like to create a report like the first query but for every orderid in the second query. 

Any help is greatly appreciated.

 

2 REPLIES 2
SASKiwi
PROC Star

How about just one report grouped by ORDERID like this?

proc sort data = JulySales;
  by orderid;
run;

proc print data = JulySales;
  by orderid;
  id oderid;
run;
FM_MF
Calcite | Level 5

You can correct it as follows:

proc sql;
 select orderid, productid,orderdate,linetotal
 from Salesorders
 where orderid in (select orderid from JulySales);
quit;

But you should first ensure that the attributes(length, format etc) of orderID in dataset-JulySales and dataset-Salessorders are same.

 

Hope this helps.

 

Thanks,

Fred

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
  • 2 replies
  • 728 views
  • 5 likes
  • 3 in conversation