Hello all,
I am attempting to run a PROC REPORT and one of my numeric values has a leading zero (0.4253). I am trying to get this to display as 0.43 in my report, but I am unable to keep the leading zero. How do I go about doing this?
CODE - variable in question is Prob
PROC REPORT DATA = Work.Check;
COLUMN Statistic ("Statistical Results" DF Value Prob );
DEFINE Statistic / 'Test';
DEFINE Prob / 'P-Value' ;
DEFINE Value / FORMAT = 3.2;
RUN;
Thank you