Hey there!
So I'm trying to figure out how to merge three data sets by a variable "Order_ID" into one with the name "delivery_dtl"
these are the three data sets:
data quick
slow
veryslow;
set orders;
Thanks for any help 🙂
oh i think i got it
is it
data delivery_dtl;
merge quick
slow
veryslow;
by Order_ID;
run;
great that worked.
Now how to do this:
Create a new variable delivery_speed in the data step; based on which data set the row / data is coming from.
Create a new variable report_month that will show the month and year part of the ‘delivery_date’ alone
I dont even understand the first task..
Question 1 - > is the observation in the merged data set from slow, quick or fast dataset?
Are you sure the question said merge? Not combine? At any rate, if they all have the same variables this doesn't quite make sense because all the variables will be overwritten. Either use the data set option IN or INDSNAME. The documentation has examples of each option.
Here's the link to the IN docs
Question 2 - > Look at Year/Month() functions, see the functions under Date&Time Category.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Get started using SAS Studio to write, run and debug your SAS programs.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.