Hi everyone! I have the following code and it works fine, except that I like to be able to format the value in the Csal, Cuni and Csalt variables, such as making the font color or back ground color of the values in the Csal, Cuni and Csalt variables different than the texts preceding them. I appreciate any help you could provide! compute after / style=Header{just=l fontweight=bold fontsize=14pt}; region = 'All Regions'; Csal = left(put(salesmn,dollar10.)); Cuni = left(put(unit_pricemn,dollar10.)); Csalt = left(put(sales_taxmn,dollar10.)); line "^{style[textdecoration=underline]Averages for These Regions}"; line "Sales: " Csal $varying50.; line "Unit Price: " Cuni $varying50.; line "Sales Tax: " Csalt $varying50.; endcomp; run; Ethen,
... View more