Skip to content

Commit 566d2c7

Browse files
authored
Rename program to show first in list
1 parent 1863af7 commit 566d2c7

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

By Syntax/FORMAT Procedure/Create User-Defined Formats.sas renamed to By Syntax/FORMAT Procedure/1_Create User-Defined Formats.sas

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,24 +54,20 @@ proc format;
5454
5001-7500 = "Heavyweight Vehicles"
5555
7501-high = "Super Heavy-Duty Vehicles"
5656
;
57-
5857
run;
5958

6059

6160
data cars_formatted; /*2*/
6261
set sashelp.cars;
6362
keep Model MSRP EngineSize MPG_Highway Weight Cylinders;
64-
format Cylinders cyl. EngineSize esize. MPG_Highway mpg. MSRP msrp. Weight weight.;
65-
63+
format Cylinders cyl. EngineSize esize. MPG_Highway mpg. MSRP msrp. Weight weight.;
6664
run;
6765

6866

6967
proc catalog cat=work.formats; /*3*/
7068
contents;
71-
7269
run;
7370

7471

7572
proc format lib=work fmtlib; /*4*/
76-
7773
run;

0 commit comments

Comments
 (0)