Hi,
hard to say without seeing your code.
Do you see the percentages here?
proc report data=sashelp.class;
column name height heightpct;
define height / display ;
define heightpct / computed format=percent8.2;
compute heightpct;
heightpct=height/100;
endcomp;
run;
- Cheers -
Interesting problem. Please post the code you have and data so that we can run the code. "data" refers to a data step using datalines, it does NOT refer to attached files.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.