Hi All ,
1) The below sample code works perfectly with PROC report to display the symbols alpha and beta using ther unicodes, but the same macro variables are unable to resovle in the report if we create using data _null_using PUt statement
ods escapechar="^";
%let alpha = ^{unicode 03B1};
%let beta = ^{unicode 03B2};
data have;
length x y $ 20;
x="&alpha";
y="&beta";
run;
ods listing close;
ods rtf file="path\report.rtf";
proc report data = have nowindows;
title &alpha β
define x/"name &alpha" width=20;
define y/"name &beta" width=20;
footnote "symbol=&alpha and &beta";
run;
ods rtf close;
ods listing;
code that does not display special symbols using PUT statement in data _null_
data _null_ ;
file print ;
set have ;
put @10 "&alpha. &beta.";
put @10 "X" @15 "Y" ;
run ;
can anyone suggest what needs to be modifed to display the symbols alpha and beta in this code.
2) Also suggest how to dispaly super script -1 in reports using UNICODE or any other method .
3) Any suggestion how to display Δ this symbol in report .
Thanks in advance for your suggestions .
As far as displaying an uppercase delta in proc report will the following provide what you want?:
^{unicode 0394};
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.
Ready to level-up your skills? Choose your own adventure.