dear SAS experts,
I want to save a numeric data under a format like : 111.222.020,33 in a macrovariable in order to use it in a sentence in an email afterwards.
The original format of the variable 'Volumen' is: 111222020.33 and I want : 111.222.020,33
I tried the following, but it didn't work. What should I change?
data Ergebnis4;
set Ergebnis3;
format Volumen numx17.2;
call symput('Volumen', Volumen);
run;
%put &Volumen.;
regards