I have data something which has negative values and 0 with decimals and i want 2 decimals for all non zero values.
I tried format=6.2 in proc report but it also makes 0 as 0.00. is there any way to skip 0 while using it in define in proc report?
HI @noda6003 Please try using
A custom format ought to work
proc format;
value custf 0=0 other=[6.2];
run;
Then in PROC REPORT
define var / format=custf.;
HI @noda6003 Please try using
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.