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: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 532 views
  • 0 likes
  • 2 in conversation