<?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 Vertical Adjustment of text in a PROC REPORT cell with PREIMAGE in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Vertical-Adjustment-of-text-in-a-PROC-REPORT-cell-with-PREIMAGE/m-p/258412#M57356</link>
    <description>&lt;P&gt;I am using CALL DEFINE to place images in a PROC REPORT text cell.&amp;nbsp; I would like the text to adjust vertically and if possible to have the images (PREIMAGE and POSTIMAGE) aligned with each other vertically. Clearly the VJUST is not doing anything and I am looking for suggestions.&amp;nbsp; An image of the current PDF output is attached.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods pdf file='c:\temp\wrap.pdf';&lt;BR /&gt;proc report data=class;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; column name age text;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; compute text;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; length style $200;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style= 'style={cellwidth=2in vjust=t preimage="c:\temp\male.jpg" postimage="c:\temp\female.jpg"}';&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; call define('text','style',style);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; endcomp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; run;&lt;BR /&gt;ods pdf close;&lt;/P&gt;</description>
    <pubDate>Wed, 23 Mar 2016 06:09:04 GMT</pubDate>
    <dc:creator>ArtC</dc:creator>
    <dc:date>2016-03-23T06:09:04Z</dc:date>
    <item>
      <title>Vertical Adjustment of text in a PROC REPORT cell with PREIMAGE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Vertical-Adjustment-of-text-in-a-PROC-REPORT-cell-with-PREIMAGE/m-p/258412#M57356</link>
      <description>&lt;P&gt;I am using CALL DEFINE to place images in a PROC REPORT text cell.&amp;nbsp; I would like the text to adjust vertically and if possible to have the images (PREIMAGE and POSTIMAGE) aligned with each other vertically. Clearly the VJUST is not doing anything and I am looking for suggestions.&amp;nbsp; An image of the current PDF output is attached.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods pdf file='c:\temp\wrap.pdf';&lt;BR /&gt;proc report data=class;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; column name age text;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; compute text;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; length style $200;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style= 'style={cellwidth=2in vjust=t preimage="c:\temp\male.jpg" postimage="c:\temp\female.jpg"}';&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; call define('text','style',style);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; endcomp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; run;&lt;BR /&gt;ods pdf close;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Mar 2016 06:09:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Vertical-Adjustment-of-text-in-a-PROC-REPORT-cell-with-PREIMAGE/m-p/258412#M57356</guid>
      <dc:creator>ArtC</dc:creator>
      <dc:date>2016-03-23T06:09:04Z</dc:date>
    </item>
    <item>
      <title>Re: Vertical Adjustment of text in a PROC REPORT cell with PREIMAGE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Vertical-Adjustment-of-text-in-a-PROC-REPORT-cell-with-PREIMAGE/m-p/258417#M57357</link>
      <description>Arthur.C,
Why not post it at ODS Report forum? Cynthia is there.
Here is what I got.
Hope could you some help.
&lt;PRE&gt;
data class;
 set sashelp.class;
 retain text '~nxxxxxxxxxxxxx~nxxxxxxxxxxxxxx~n';
 run;
ods escapechar='~';
ods pdf file='/folders/myfolders/x.pdf' style=minial;
 proc report data=class nowd noheader;
  column name age text;
  define text/display style={preimage='/folders/myfolders/x.png'
                             postimage='/folders/myfolders/y.png' just=center};
 run;
ods pdf close;
&lt;/PRE&gt;</description>
      <pubDate>Wed, 23 Mar 2016 07:16:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Vertical-Adjustment-of-text-in-a-PROC-REPORT-cell-with-PREIMAGE/m-p/258417#M57357</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-03-23T07:16:43Z</dc:date>
    </item>
    <item>
      <title>Re: Vertical Adjustment of text in a PROC REPORT cell with PREIMAGE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Vertical-Adjustment-of-text-in-a-PROC-REPORT-cell-with-PREIMAGE/m-p/258732#M57393</link>
      <description>&lt;P&gt;At &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;'s suggestion I have reposted this query in the ODS and Reporting forum.&amp;nbsp; Please go there to respond or view responses.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://communities.sas.com/t5/ODS-and-Base-Reporting/Vertical-Adjustment-of-text-in-a-PROC-REPORT-cell-with-PREIMAGE/m-p/258731#M15451" target="_blank"&gt;http://communities.sas.com/t5/ODS-and-Base-Reporting/Vertical-Adjustment-of-text-in-a-PROC-REPORT-cell-with-PREIMAGE/m-p/258731#M15451&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Mar 2016 06:16:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Vertical-Adjustment-of-text-in-a-PROC-REPORT-cell-with-PREIMAGE/m-p/258732#M57393</guid>
      <dc:creator>ArtC</dc:creator>
      <dc:date>2016-03-24T06:16:34Z</dc:date>
    </item>
    <item>
      <title>Re: Vertical Adjustment of text in a PROC REPORT cell with PREIMAGE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Vertical-Adjustment-of-text-in-a-PROC-REPORT-cell-with-PREIMAGE/m-p/258735#M57394</link>
      <description>&lt;PRE&gt;
Arthur.T,
Did you check my code ? 
Is that what you are looking for ?

&lt;/PRE&gt;</description>
      <pubDate>Thu, 24 Mar 2016 06:43:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Vertical-Adjustment-of-text-in-a-PROC-REPORT-cell-with-PREIMAGE/m-p/258735#M57394</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-03-24T06:43:30Z</dc:date>
    </item>
    <item>
      <title>Re: Vertical Adjustment of text in a PROC REPORT cell with PREIMAGE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Vertical-Adjustment-of-text-in-a-PROC-REPORT-cell-with-PREIMAGE/m-p/258881#M57408</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt; - responding on the other thread.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Mar 2016 17:15:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Vertical-Adjustment-of-text-in-a-PROC-REPORT-cell-with-PREIMAGE/m-p/258881#M57408</guid>
      <dc:creator>ArtC</dc:creator>
      <dc:date>2016-03-24T17:15:15Z</dc:date>
    </item>
  </channel>
</rss>

