hi Kamalakar this message indicates, that the font was not found in the SAS registry. To see which fonts are defined in the SAS registry, you can use the following code: proc registry startat="\CORE\PRINTING\FREETYPE\FONTS" list ; run; Then check the log. All the fonts that are on your system are usually registered during the install process of SAS. However you can register fonts later using Proc FONTREG, see sample below proc fontreg mode=add msglevel=normal usesashelp ; truetype "c:\windows\fonts"; run; Please also check the documention for Proc REGISTRY and Proc FONTREG for more information. Bruno
... View more