BookmarkSubscribeRSS Feed
archana
Fluorite | Level 6

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;

6 REPLIES 6
Reeza
Super User

How didn't it work?

Update is designed exactly that function, update record if it exists or add it in otherwise.

archana
Fluorite | Level 6

 

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.

Reeza
Super User

Post your full log then. My *guess* is that your macro variable is resolving with spaces so the update statement see's 3 datasets?

Howles
Quartz | Level 8

UPDATE, or MODIFY??

Astounding
PROC Star

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.

archana
Fluorite | Level 6

Yes it worked after adding the semicolon. Thank you!!

sas-innovate-white.png

Register Today!

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.

Register now!

What is Bayesian Analysis?

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 6 replies
  • 3875 views
  • 3 likes
  • 4 in conversation