Output 2.6PROC REPORT Default Formatting When Values Have Leading Blanks
This problem is corrected in the next output by using the 3.1 format, causing no leading
blanks to appear in the comparison:
proc report data=sasuser.houses;
title1 "ORDER=FORMATTED";
title2 "(default)";
title4 "FORMAT=3.1";
title5 "(specified)";
column baths;
define baths / group format=3.1;
run;
Output 2.7PROC REPORT Formatted When Values Have No Leading Blanks
The problem is also corrected in the following output because the internal values and not
the formatted values are used to determine the order:
Procedure Concepts43
proc report data=sasuser.houses nowd;
title1 "ORDER ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month, and much more.