<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Decimal alignment in rtf output with german MS Word in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Decimal-alignment-in-rtf-output-with-german-MS-Word/m-p/138195#M11085</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please try the below code,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check the bold code and make sure that you pass the numeric data for proper alignment in proc report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data test;&lt;/P&gt;&lt;P&gt;&amp;nbsp; x=1.9; output;&lt;/P&gt;&lt;P&gt;&amp;nbsp; x=1.91; output;&lt;/P&gt;&lt;P&gt;&amp;nbsp; x=1.; output;&lt;/P&gt;&lt;P&gt;&amp;nbsp; x=12.; output;&lt;/P&gt;&lt;P&gt;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ods rtf file='E:\source\test.rtf';&lt;/P&gt;&lt;P&gt;&amp;nbsp; proc report data=test nowindows split="|" headline headskip;&lt;/P&gt;&lt;P&gt;&amp;nbsp; columns x;&lt;/P&gt;&lt;P&gt;&amp;nbsp; define x / display"Dose 1|(n=457)" width=15 &lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;STRONG&gt;style(column)=[just=d];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;&amp;nbsp; ods rtf close;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Jagadish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Nov 2013 12:25:26 GMT</pubDate>
    <dc:creator>Jagadishkatam</dc:creator>
    <dc:date>2013-11-11T12:25:26Z</dc:date>
    <item>
      <title>Decimal alignment in rtf output with german MS Word</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Decimal-alignment-in-rtf-output-with-german-MS-Word/m-p/138194#M11084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;I tried to get character data decimal aligned in rtf output. I tried to do this here:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/kb/24/045.html" title="http://support.sas.com/kb/24/045.html"&gt;24045 - In ODS RTF, can I modify the alignment from always being centered on the decimal?&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data test;&lt;/P&gt;&lt;P&gt;&amp;nbsp; x='1.9'; output;&lt;/P&gt;&lt;P&gt;&amp;nbsp; x='1.91'; output;&lt;/P&gt;&lt;P&gt;&amp;nbsp; x='1.'; output;&lt;/P&gt;&lt;P&gt;&amp;nbsp; x='12.'; output;&lt;/P&gt;&lt;P&gt;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; ods rtf file='c:\file.rtf';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; proc report data=test nowindows split="|" headline headskip;&lt;/P&gt;&lt;P&gt;&amp;nbsp; columns x;&lt;/P&gt;&lt;P&gt;&amp;nbsp; define x / display"Dose 1|(n=457)" width=15&lt;/P&gt;&lt;P&gt;&amp;nbsp; style(column)=[protectspecialchars=off pretext="\tqdec\tx500 "];&lt;/P&gt;&lt;P&gt;&amp;nbsp; run; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; ods rtf close;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the first place it didn't work. Then I finally got the idea that it does not work because of the german installation of my MS Word. So, with the values &lt;STRONG&gt;comma&lt;/STRONG&gt;-separated it worked fine!&lt;/P&gt;&lt;P&gt;But, I have to produce the output with decimal &lt;STRONG&gt;points&lt;/STRONG&gt;. Therefore, my question is: how can I tell Word that it shall use the decimal point and not the comma for the decimal alignment?&lt;/P&gt;&lt;P&gt;Is there a possibility? Can I do this within the pretext-option or do I have to modify my rtf template or...?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks very much in advance,&lt;/P&gt;&lt;P&gt;Daniela&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Nov 2013 10:34:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Decimal-alignment-in-rtf-output-with-german-MS-Word/m-p/138194#M11084</guid>
      <dc:creator>BlackTea</dc:creator>
      <dc:date>2013-11-11T10:34:07Z</dc:date>
    </item>
    <item>
      <title>Re: Decimal alignment in rtf output with german MS Word</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Decimal-alignment-in-rtf-output-with-german-MS-Word/m-p/138195#M11085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please try the below code,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check the bold code and make sure that you pass the numeric data for proper alignment in proc report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data test;&lt;/P&gt;&lt;P&gt;&amp;nbsp; x=1.9; output;&lt;/P&gt;&lt;P&gt;&amp;nbsp; x=1.91; output;&lt;/P&gt;&lt;P&gt;&amp;nbsp; x=1.; output;&lt;/P&gt;&lt;P&gt;&amp;nbsp; x=12.; output;&lt;/P&gt;&lt;P&gt;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ods rtf file='E:\source\test.rtf';&lt;/P&gt;&lt;P&gt;&amp;nbsp; proc report data=test nowindows split="|" headline headskip;&lt;/P&gt;&lt;P&gt;&amp;nbsp; columns x;&lt;/P&gt;&lt;P&gt;&amp;nbsp; define x / display"Dose 1|(n=457)" width=15 &lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;STRONG&gt;style(column)=[just=d];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;&amp;nbsp; ods rtf close;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Jagadish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Nov 2013 12:25:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Decimal-alignment-in-rtf-output-with-german-MS-Word/m-p/138195#M11085</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2013-11-11T12:25:26Z</dc:date>
    </item>
    <item>
      <title>Re: Decimal alignment in rtf output with german MS Word</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Decimal-alignment-in-rtf-output-with-german-MS-Word/m-p/138196#M11086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jagadish,&lt;/P&gt;&lt;P&gt;Thanks! But with just=d I got same results regardless of whether I use values with decimal point or with decimal comma: it's not aligned. I wonder why just=d isn't working even with the comma.&lt;/P&gt;&lt;P&gt;Daniela&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Nov 2013 14:14:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Decimal-alignment-in-rtf-output-with-german-MS-Word/m-p/138196#M11086</guid>
      <dc:creator>BlackTea</dc:creator>
      <dc:date>2013-11-11T14:14:48Z</dc:date>
    </item>
    <item>
      <title>Re: Decimal alignment in rtf output with german MS Word</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Decimal-alignment-in-rtf-output-with-german-MS-Word/m-p/138197#M11087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please find below the output of the rtf file i got, here the decimal places are aligned by the usage of [just=d]. The values passed are with decimal points. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jiveImage" src="https://communities.sas.com/legacyfs/online/4515_pastedImage_1.png" style="width: 187px; height: 199px;" /&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Jagadish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Nov 2013 15:18:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Decimal-alignment-in-rtf-output-with-german-MS-Word/m-p/138197#M11087</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2013-11-11T15:18:04Z</dc:date>
    </item>
    <item>
      <title>Re: Decimal alignment in rtf output with german MS Word</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Decimal-alignment-in-rtf-output-with-german-MS-Word/m-p/138198#M11088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; You have a fairly specific usage question. And as you can see, using JUST=D does work for ODS RTF. Since you suspect your issue is Microsoft Word and/or possibly with the Word German version interpreting the RTF file created by SAS, your best bet for help is to open a track with Tech Support. For example, if there &lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;IS&lt;/STRONG&gt;&lt;/SPAN&gt; an issue with the JUST=D style override and ODS RTF and MS Word in German, then the &lt;STRONG style="text-decoration: underline;"&gt;ONLY&lt;/STRONG&gt; people who can open a defect with the developers to fix this are the people in Tech Support. So while it might be useful for you to post a question here, just to get a general sense of whether any one else has encountered tis issue, to really determine whether this is a defect and to get the defect reported so it can be fixed, you need to work with Tech Support.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; To open a track with Tech Support, you can send email to &lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:support@sas.com"&gt;support@sas.com&lt;/A&gt;&lt;SPAN&gt; , or you can fill out the form at this link: &lt;/SPAN&gt;&lt;A href="http://support.sas.com/ctx/supportform/createForm"&gt;http://support.sas.com/ctx/supportform/createForm&lt;/A&gt; or you can call them at &lt;SPAN class="baec5a81-e4d6-4674-97f3-e9220f0136c1" style="white-space: nowrap;"&gt;919-677-8008 to &lt;/SPAN&gt;open a track.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cynthia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Nov 2013 19:58:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Decimal-alignment-in-rtf-output-with-german-MS-Word/m-p/138198#M11088</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2013-11-11T19:58:19Z</dc:date>
    </item>
  </channel>
</rss>

