BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
s_lassen
Meteorite | Level 14

I am not quite sure what you are trying to do, but there seems to be two obvious errors in the macro code:

rc=&string1.&string2.;

This resolves to 

rc="appsrv_header('Content-type','application/vnd.openxml""formats-officedocument.spreadsheetml.sheet')";

which means that the RC variable gets the value

appsrv_header('Content-type','application/vnd.openxml"formats-officedocument.spreadsheetml.sheet')

(when the string is resolved, the double double-quote inside the double-quotes becomes a single double-quote).

I think you can get the string you want with

rc=catx(' ',&string1,&string2);

The second problem is with the assignments 

%let string3=appsrv_header('Content-disposition','attachment;;
%let string4=filename=test2.xlsx');

As the single quotes are unbalanced in the two statements, it becomes a single statement, so STRING3 becomes something like 

appsrv_header('Content-disposition','attachment;; %let string4=filename=test2.xlsx');

and STRING4 does not get defined at all. You can solve this by using the same method as for the first two variables (put the stuff in double quotes and use the CATX function), but if that will make your whole code work as intended, I have no idea.

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!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 15 replies
  • 3789 views
  • 0 likes
  • 6 in conversation