BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Thalitacosta
Obsidian | Level 7

I have a macro that has proc append, when running once the output is perfect, but when changing the macro variables and running again the output of proc append that would have the same name is not created. How to fix this problem without having to disconnect the server?

 

%macro psi ([...]);

[...]

proc append data= dist_resul_&date. base=Result_DIST;run;

[...]

%mend psi;

%psi( [variables1] ); Here is the output "Result_DIST"!

 

%psi( [variables2] ); Here the output "Result_DIST" does not work!

 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26

It's hard to tell, since you provide only a fragment of the actual macro. There could be many causes. Furthermore, @Thalitacosta when you say "does not work", you have not provided the slightest bit of evidence about what went wrong. We can't diagnose what went wrong when all you tell us is that it "does not work". Is there an error in the LOG? If so (now and in the future), show us the ENTIRE log for this macro. Please, from now on, be generous with information. Do not try to provide the absolute bare minimum information, as you have done.

 

One possible cause is that when you append to an existing data set, but the new data set has different variables, PROC APPEND fails. You can use the FORCE option to override this. There are many other possible causes...

--
Paige Miller

View solution in original post

1 REPLY 1
PaigeMiller
Diamond | Level 26

It's hard to tell, since you provide only a fragment of the actual macro. There could be many causes. Furthermore, @Thalitacosta when you say "does not work", you have not provided the slightest bit of evidence about what went wrong. We can't diagnose what went wrong when all you tell us is that it "does not work". Is there an error in the LOG? If so (now and in the future), show us the ENTIRE log for this macro. Please, from now on, be generous with information. Do not try to provide the absolute bare minimum information, as you have done.

 

One possible cause is that when you append to an existing data set, but the new data set has different variables, PROC APPEND fails. You can use the FORCE option to override this. There are many other possible causes...

--
Paige Miller

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 1 reply
  • 575 views
  • 0 likes
  • 2 in conversation