Reply from sas tech team : The problem here appears to be the hot fix installed C0003 modified the the Base.Template.Style which is used as a parent to all other styles. In this style that you sent me, if you scroll down to the Data, you will see that the Text-Align style property was set to right. WE can modify the style and compile it and this will correct the problem for you. However, it SAS is installed on the Server, then we will need to compile this in SASHELP to see it change. You can add the below ODS PATH statement to tell SAS add this to the WORK location or another location. Please let me know how this works after recompiling the below style Run the following code - proc template; source Base.Template.Style / file="some directory\style.txt"; run; Open the output file to see the Base.Template.Style define style Base.Template.Style; notes "Implicit parent for all style templates"; : : searchfor below text and remove the align setting style Data from Cell "Default style for data cells in columns." / textalign = right; The text alignment attribute abbove was causing the issue, remove it. They gave me an update command, ods path(prepend) work.templat(update); %include "styles.txt"; /* your code */ But it didnot seem to work (probably it defaults to server) so i gave a new style with the same description and used it and it worked!.
... View more