how can I append a table from SAS into an access table ... I need to keep a running sum thanks
LIBNAME would be easy for this situation.
libname x access ......;
proc append base=x.have data=sum force; run;
Can you please provide a more complete explanation of what you are after, including a sample of the data you are using and an example of the desired output based on that data?
LIBNAME would be easy for this situation.
libname x access ......;
proc append base=x.have data=sum force; run;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.