Good evening, does anyone know how to use the %input statement in a macro in order to read in a value for a macro variable? I use SAS Enterprise Guide, so the macro is written in the code window. My first attempts unfortunately didn't work. I tried something like this: %macro identi;
%put Type in your name;
%input name;
%put Type in your age;
%input age;
%put &name is &age years old;
%mend identi;
%identi; When you start the program, there is no possibility for the user to type in the values for the variables. Only the log window opens. Do I have to program an extra window where the user can type in the variable values or is there something else wrong? Any help would be greatly appreciated. Regards, FlorianG
... View more