data test (keep=pct);
set test1;
run;
sample output
100
50
70
In ODS i have this
DEFINE pct /DISPLAY style(column)={tagattr='format:#0%'} "%Processed";
My output looks like this
%Processed
1000%
5000%
7000%
I am getting the desired percent sign however I am getting two extra zeros. How can I get rid of the extra zeroes
PERCENT format is intended for values of 0 to 1 where 1=100%. So either divide your numbers by 100 or use a custom picture format to add a % at the end of any value.
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.