How can I format my percent in this proc freq? I have tried every percent variable name I can think of and non of them work. If "Percent" is printed in the table being generated, why is it telling me there is no percent variable?
PROC FREQ DATA=data ;
TABLE Program*Award / nocol norow;
label Program='Program Type';
label Award='Amount Awarded';
format award dollar10. Percent f5.1 ;
RUN;
PROC FREQ doesn't support formatting easily. I would recommend using PROC TABULATE instead, but you'll have to manually specify the percentages which is annoying as well.
@Whitlea wrote:
How can I format my percent in this proc freq? I have tried every percent variable name I can think of and non of them work. If "Percent" is printed in the table being generated, why is it telling me there is no percent variable?
PROC FREQ DATA=data ;
TABLE Program*Award / nocol norow;
label Program='Program Type';
label Award='Amount Awarded';
format award dollar10. Percent f5.1 ;RUN;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
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.