ODS PDF FILE = "c:\temp\report.pdf" NOTOC COLUMNS=3 ; PROC FORMAT ; VALUE $debut "A"-<"F" = "A - E" "F"-<"P" = "F - O" "P"-<"a" = "P - Z" ; RUN ; PROC REPORT DATA = livre.voitures NOWD NOHEADER ; COLUMNS constructeur=initiale constructeur ; DEFINE initiale / GROUP FORMAT=$debut. ; DEFINE constructeur / GROUP ; BREAK AFTER constructeur / PAGE ; RUN ; ODS PDF CLOSE ;