Bonjour,
j'ai une proc tabulate dans laquelle je souhaite mettre toutes les valeurs de la ligne total (ALL) en couleur.
J'ai beau mettre au niveau des 2 instructions ALL : foreground=red mais à l'édition les valeurs des mes lignes 'total (ALL)' restent en couleur "noire".
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14 ODS PDF UNIFORM File="&FicOUT_PDF" STARTPAGE=NO Style=styles.NormalPrinter; proc tabulate data=RES_ME_FAD missing ; class LIBTYPUM LIBUM RES_MODENT / style={textalign=c font_size=8pt font_face=arial font_style=roman font_weight=bold}; table LIBTYPUM=' ' * (LIBUM=' ' ALL='Total'*f=10.*{s={textalign=c background=white foreground=red font_size=8pt height=0.5cm font_face=arial font_style=roman}}) ALL='Total'*f=10.*{s={textalign=c foreground=red font_size=8pt height=0.5cm font_face=arial font_style=roman}} , RES_MODENT="Modes d'entrée" * N="Nb RUM"*f=10.*{s={cellwidth=2.5cm textalign=r font_size=8pt height=0.5cm font_face=arial font_style=italic}} / rts=80 box={label=" " style={just=left font_face=arial font_size=2 font_style=roman}} misstext=" "; classlev LIBUM / style={textalign=l font_size=8pt font_face=arial font_style=italic font_style=roman font_weight=light}; classlev LIBTYPUM / style={textalign=l font_size=8pt font_face=arial font_style=italic font_style=roman font_weight=light}; keyword ALL / style={background=white textalign=l font_size=8pt height=0.5cm font_face=arial font_style=italic font_weight=bold}; keyword N / style={textalign=c font_size=8pt height=0.5cm font_face=arial font_style=italic font_weight=bold}; run; ODS PDF CLOSE;
Par avance je remercie la personne qui pourra m'aider à résoudre ce problème .
Cordialement.
Partager