<?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: Row height changes with use of symbols in ODS PDF in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Row-height-changes-with-use-of-symbols-in-ODS-PDF/m-p/439054#M20461</link>
    <description>Hi:&lt;BR /&gt;  I checked with a PDF expert in Tech Support and got this feedback:&lt;BR /&gt;"It looks like he is running into this defect:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://support.sas.com/kb/56/784.html" target="_blank"&gt;http://support.sas.com/kb/56/784.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;.. but Times is not fixing the problem when I use his code. Ask him to create a track so that I can followup with the developers."&lt;BR /&gt;&lt;BR /&gt;  So please use this form &lt;A href="http://support.sas.com/ctx/supportform/createForm" target="_blank"&gt;http://support.sas.com/ctx/supportform/createForm&lt;/A&gt; to open a track and reference this forum posting in your track.&lt;BR /&gt;&lt;BR /&gt;Thanks, cynthia</description>
    <pubDate>Wed, 21 Feb 2018 19:41:26 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2018-02-21T19:41:26Z</dc:date>
    <item>
      <title>Row height changes with use of symbols in ODS PDF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Row-height-changes-with-use-of-symbols-in-ODS-PDF/m-p/438437#M20423</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am struggling with ODS PDF where use of special symbols cause&amp;nbsp;increase&amp;nbsp;in height of row generated by proc report via ODS PDF.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;E.g. see the third row in attached file. The output is generated via following code. Is there a way to ensure the height of the rows wherever the symbols are used to be same as the height of the other rows.&amp;nbsp; Thanks in advance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data x;&lt;BR /&gt; format x $200.;&lt;BR /&gt; x = 'Some text without special symbol'; output; output;&lt;BR /&gt; x = "Some text with special symbol Greater than or equal to - ^{unicode 2265}"; output;&lt;BR /&gt; x = 'Some text without special symbol'; output; output;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;ods escapechar="^";&lt;/P&gt;
&lt;P&gt;options printerpath=pdf;&lt;BR /&gt; ods pdf file="d:\text_test.pdf" title="text" uniform notoc nobookmarkgen;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc report data=x nowd;&lt;BR /&gt; column x;&lt;BR /&gt; define x/display 'text';&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;ods pdf close;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2018 17:16:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Row-height-changes-with-use-of-symbols-in-ODS-PDF/m-p/438437#M20423</guid>
      <dc:creator>vineet7878_gmail_com</dc:creator>
      <dc:date>2018-02-19T17:16:19Z</dc:date>
    </item>
    <item>
      <title>Re: Row height changes with use of symbols in ODS PDF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Row-height-changes-with-use-of-symbols-in-ODS-PDF/m-p/438941#M20443</link>
      <description>&lt;P&gt;You can manually control the height of all rows at once by modifying the cellheight option within the columns styles. This goes in the PROC REPORT statement.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc report data=x nowd style(column)={cellheight=0.3in};&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you replace your proc report statement with that one, you should see all rows are now the same height. Feel free to play around with the&amp;nbsp;number if you don't like the size I chose. It doesn't always do a great job at centering within the new heights, but all the boxes will be the same size.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Feb 2018 14:48:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Row-height-changes-with-use-of-symbols-in-ODS-PDF/m-p/438941#M20443</guid>
      <dc:creator>GinaRepole</dc:creator>
      <dc:date>2018-02-21T14:48:20Z</dc:date>
    </item>
    <item>
      <title>Re: Row height changes with use of symbols in ODS PDF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Row-height-changes-with-use-of-symbols-in-ODS-PDF/m-p/438951#M20445</link>
      <description>&lt;P&gt;Thanks Gina. This solution doesn't work when text is wrapping up in the cell, which is often the case.&lt;/P&gt;
&lt;P&gt;I am looking for a solution where I set the value once somewhere in proc report, template or any other place to fix the line height. Data driven use of these symbols, superscript, subscript etc shouldn't mess up my report layout, pagination etc.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Feb 2018 15:21:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Row-height-changes-with-use-of-symbols-in-ODS-PDF/m-p/438951#M20445</guid>
      <dc:creator>vineet7878_gmail_com</dc:creator>
      <dc:date>2018-02-21T15:21:52Z</dc:date>
    </item>
    <item>
      <title>Re: Row height changes with use of symbols in ODS PDF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Row-height-changes-with-use-of-symbols-in-ODS-PDF/m-p/439054#M20461</link>
      <description>Hi:&lt;BR /&gt;  I checked with a PDF expert in Tech Support and got this feedback:&lt;BR /&gt;"It looks like he is running into this defect:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://support.sas.com/kb/56/784.html" target="_blank"&gt;http://support.sas.com/kb/56/784.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;.. but Times is not fixing the problem when I use his code. Ask him to create a track so that I can followup with the developers."&lt;BR /&gt;&lt;BR /&gt;  So please use this form &lt;A href="http://support.sas.com/ctx/supportform/createForm" target="_blank"&gt;http://support.sas.com/ctx/supportform/createForm&lt;/A&gt; to open a track and reference this forum posting in your track.&lt;BR /&gt;&lt;BR /&gt;Thanks, cynthia</description>
      <pubDate>Wed, 21 Feb 2018 19:41:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Row-height-changes-with-use-of-symbols-in-ODS-PDF/m-p/439054#M20461</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2018-02-21T19:41:26Z</dc:date>
    </item>
    <item>
      <title>Re: Row height changes with use of symbols in ODS PDF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Row-height-changes-with-use-of-symbols-in-ODS-PDF/m-p/439108#M20469</link>
      <description>&lt;P&gt;Thanks Cynthia. I have opened up a track with support.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Feb 2018 22:37:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Row-height-changes-with-use-of-symbols-in-ODS-PDF/m-p/439108#M20469</guid>
      <dc:creator>vineet7878_gmail_com</dc:creator>
      <dc:date>2018-02-21T22:37:38Z</dc:date>
    </item>
    <item>
      <title>Re: Row height changes with use of symbols in ODS PDF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Row-height-changes-with-use-of-symbols-in-ODS-PDF/m-p/439696#M20491</link>
      <description>&lt;P class="cs95e872d0"&gt;&lt;SPAN class="cse0ee740f1"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;SAS support has provided a workaround to fix this problem. It is provided below. Thanks for your prompt help.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="cs95e872d0"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="cs95e872d0"&gt;&lt;SPAN class="cse0ee740f1"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;data&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csab6422e41"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt; x;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="cs95e872d0"&gt;&lt;SPAN class="csd28c4f3f1"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;format&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csab6422e41"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt; x &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="cs1d98e3141"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;$200.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csab6422e41"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="cs95e872d0"&gt;&lt;SPAN class="csab6422e41"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;x = &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csaf1817d1"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;'Some text without special symbol'&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csab6422e41"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csd28c4f3f1"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;output&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csab6422e41"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csd28c4f3f1"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;output&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csab6422e41"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="cs95e872d0"&gt;&lt;SPAN class="csab6422e41"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;x = &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csaf1817d1"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;"Some text with special symbol Greater than or equal to - &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;^S={font_face=Symbol}%sysfunc(byte(179))&lt;/STRONG&gt;&lt;/FONT&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csab6422e41"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csd28c4f3f1"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;output&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csab6422e41"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="cs95e872d0"&gt;&lt;SPAN class="csab6422e41"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;x = &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csaf1817d1"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;"Some text without special symbol Greater than or equal to"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csab6422e41"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csd28c4f3f1"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;output&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csab6422e41"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="cs95e872d0"&gt;&lt;SPAN class="csab6422e41"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;x = &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csaf1817d1"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;'Some text without special symbol'&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csab6422e41"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csd28c4f3f1"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;output&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csab6422e41"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csd28c4f3f1"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;output&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csab6422e41"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="cs95e872d0"&gt;&lt;SPAN class="cse0ee740f1"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;run&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="csab6422e41"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="cs95e872d0"&gt;&lt;SPAN class="cs91d5a1581"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Feb 2018 13:51:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Row-height-changes-with-use-of-symbols-in-ODS-PDF/m-p/439696#M20491</guid>
      <dc:creator>vineet7878_gmail_com</dc:creator>
      <dc:date>2018-02-23T13:51:09Z</dc:date>
    </item>
  </channel>
</rss>

