Hi,
my criteria is to update the existing record if it exists in the cumulative dataset else if it is new record then it needs to be added to the cumulative dataset. The cumulative data contains history data .
I tried the below but it didnt work. Any other suggestions-
data adhoc.dly_cumulative;
update adhoc.dly_cumulative adhoc.dly_&day0
by column;
run;
How didn't it work?
Update is designed exactly that function, update record if it exists or add it in otherwise.
ERROR 411-185: The UPDATE statement requires two data sets, too many data sets have been specified.
This is the error i am getting when trying to execute the above.
Post your full log then. My *guess* is that your macro variable is resolving with spaces so the update statement see's 3 datasets?
UPDATE, or MODIFY??
It looks like you need to add a semicolon at the end of the UPDATE statement. The software thinks BY and COLUMN are names of additional data sets.
Yes it worked after adding the semicolon. Thank you!!
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.
Early bird rate extended! Save $200 when you sign up by March 31.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.