TITLE ; PROC FORMAT ; PICTURE mois (DEFAULT = 40) LOW-HIGH = "Mois de %B %Y" (DATATYPE=DATE) ; RUN ; ODS PDF FILE = "c:\temp\picture 2.pdf" ; PROC TABULATE DATA = sashelp.prdsale F = milliers. ; CLASS month ; FORMAT month mois. ; VAR actual ; TABLE month = "", actual = "Ventes" * SUM = "" ; RUN ; ODS PDF CLOSE ;