<?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: Why Checkbox graphic Isn't Displaying in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Why-Checkbox-graphic-Isn-t-Displaying/m-p/295535#M16750</link>
    <description>&lt;P&gt;Hi,&lt;BR /&gt;&amp;nbsp;Also, you do not show your ODS statements -- I suspect you are using ODS EXCEL because TAGSETS.EXCELXP does not use images. But you could also use ODS HTML or ODS MSOFFICE2K, so without more information about your destination, it is hard to tell.&lt;BR /&gt;&lt;BR /&gt;Also, you are using an ESCAPECHAR function but do not show your ODS ESCAPECHAR statement:&lt;BR /&gt;ods escapechar='^';&lt;BR /&gt;&lt;BR /&gt;Last, the reason your destination matters is that you have to be sure that your destination supports both ESCAPECHAR and PREIMAGE. So this might be a question for Tech Support. At this point, no one can test similar code because your ODS destination is unknown.&lt;BR /&gt;&lt;BR /&gt;cynthia&lt;/P&gt;</description>
    <pubDate>Wed, 31 Aug 2016 15:07:30 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2016-08-31T15:07:30Z</dc:date>
    <item>
      <title>Why Checkbox graphic Isn't Displaying</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Why-Checkbox-graphic-Isn-t-Displaying/m-p/294868#M16717</link>
      <description>&lt;P&gt;In the attached excel spreadsheet I've store a path to a checkbox image ie&lt;/P&gt;
&lt;TABLE width="1017"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="1017"&gt;
&lt;P&gt;"^{style [ preimage='\\leto\Health Services\Revenue Management\Risk Analytics\Care\PA\2016\Models\Dev-AA\BH\Logo\checkboxv1.png']Normal}";&lt;/P&gt;
&lt;P&gt;Basically Tabel3 will contain the above information. I expect the below on the PDF. This doesn't appear to be a syntax issue,&lt;/P&gt;
&lt;P&gt;but i could be mistaken. Any suggestions would be appreciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What I expect is:&lt;/P&gt;
&lt;P&gt;checkbox image Normal&lt;/P&gt;
&lt;P&gt;checkbox image Abnormal&lt;/P&gt;
&lt;P&gt;checkbox image Normal&lt;/P&gt;
&lt;P&gt;etc.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What I'm gettting is:&lt;/P&gt;
&lt;P&gt;"Normal";&lt;/P&gt;
&lt;P&gt;"Abnormal_____";&lt;/P&gt;
&lt;P&gt;etc.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The SAS CODE:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods region x=&lt;STRONG&gt;5.0&lt;/STRONG&gt;in y=&lt;STRONG&gt;1.5&lt;/STRONG&gt;in;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc report data = pg2tabl3 out=testfile nowindows nowd&lt;/P&gt;
&lt;P&gt;style(report)=[rules=none frame=void cellspacing=&lt;STRONG&gt;0&lt;/STRONG&gt; cellpadding=&lt;STRONG&gt;1&lt;/STRONG&gt;pt just=l fontsize=&lt;STRONG&gt;3&lt;/STRONG&gt;pt]&lt;/P&gt;
&lt;P&gt;style(header)=[background=white font_weight=bold just=l font_size=&lt;STRONG&gt;5&lt;/STRONG&gt;pt];&lt;/P&gt;
&lt;P&gt;column table3;&lt;/P&gt;
&lt;P&gt;define table3 / '* (Mandatory - Complete at least one system)' style(column)=[cellwidth=&lt;STRONG&gt;3.0&lt;/STRONG&gt;in] ;&lt;/P&gt;
&lt;P&gt;rbreak after / summarize;&lt;/P&gt;
&lt;P&gt;compute table3;&lt;/P&gt;
&lt;P&gt;if table3 ^= ' ' then&lt;/P&gt;
&lt;P&gt;call define (_row_, 'Style', 'style= [font_size=9pt vjust=middle cellwidth=3.0in ]');&lt;/P&gt;
&lt;P&gt;if table3 ^= ' ' then&lt;/P&gt;
&lt;P&gt;call define (_row_, 'Style', 'Style= [font_size=9pt vjust=center cellwidth=3.0in ]');&lt;/P&gt;
&lt;P&gt;if table3 ^= ' ' then&lt;/P&gt;
&lt;P&gt;call define (_row_, 'Style', 'Style= [font_size=9pt vjust=center cellwidth=3.0in ]');&lt;/P&gt;
&lt;P&gt;if table3 ^= ' ' then&lt;/P&gt;
&lt;P&gt;call define (_row_, 'Style', 'Style= [font_size=9pt vjust=center cellwidth=3.0in ]');&lt;/P&gt;
&lt;P&gt;if table3 ^= ' ' then&lt;/P&gt;
&lt;P&gt;call define (_row_, 'Style', 'Style= [font_size=9pt vjust=center cellwidth=3.0in ]');&lt;/P&gt;
&lt;P&gt;if table3 ^= ' ' then&lt;/P&gt;
&lt;P&gt;call define (_row_, 'Style', 'Style= [font_size=9pt vjust=center cellwidth=3.0in ]');&lt;/P&gt;
&lt;P&gt;if table3 ^= ' ' then&lt;/P&gt;
&lt;P&gt;call define (_row_, 'Style', 'Style= [font_size=9pt vjust=center cellwidth=3.0in ]');&lt;/P&gt;
&lt;P&gt;if table3 ^= ' ' then&lt;/P&gt;
&lt;P&gt;call define (_row_, 'Style', 'Style= [font_size=9pt vjust=center cellwidth=3.0in ]');&lt;/P&gt;
&lt;P&gt;if table3 ^= ' ' then&lt;/P&gt;
&lt;P&gt;call define (_row_, 'Style', 'Style= [font_size=9pt vjust=center cellwidth=3.0in ]');&lt;/P&gt;
&lt;P&gt;if table3 ^= ' ' then&lt;/P&gt;
&lt;P&gt;call define (_row_, 'Style', 'Style= [font_size=9pt vjust=center cellwidth=3.0in ]');&lt;/P&gt;
&lt;P&gt;if table3 ^= ' ' then&lt;/P&gt;
&lt;P&gt;call define (_row_, 'Style', 'Style= [font_size=9pt vjust=center cellwidth=3.0in ]');&lt;/P&gt;
&lt;P&gt;if table3 ^= ' ' then&lt;/P&gt;
&lt;P&gt;call define (_row_, 'Style', 'Style= [font_size=9pt vjust=center cellwidth=3.0in ]');&lt;/P&gt;
&lt;P&gt;if table3 ^= ' ' then&lt;/P&gt;
&lt;P&gt;call define (_row_, 'Style', 'style= [font_size=9pt vjust=center cellwidth=3.0in ]');&lt;/P&gt;
&lt;P&gt;if table3 ^= ' ' then&lt;/P&gt;
&lt;P&gt;call define (_row_, 'Style', 'Style= [font_size=9pt vjust=center cellwidth=3.0in ]');&lt;/P&gt;
&lt;P&gt;if table3 ^= ' ' then&lt;/P&gt;
&lt;P&gt;call define (_row_, 'Style', 'Style= [font_size=9pt vjust=center cellwidth=3.0in ]');&lt;/P&gt;
&lt;P&gt;if table3 ^= ' ' then&lt;/P&gt;
&lt;P&gt;call define (_row_, 'Style', 'Style= [font_size=9pt vjust=center cellwidth=3.0in ]');&lt;/P&gt;
&lt;P&gt;if table3 ^= ' ' then&lt;/P&gt;
&lt;P&gt;call define (_row_, 'Style', 'Style= [font_size=9pt vjust=center cellwidth=3.0in ]');&lt;/P&gt;
&lt;P&gt;if table3 ^= ' ' then&lt;/P&gt;
&lt;P&gt;call define (_row_, 'Style', 'Style= [font_size=9pt vjust=center cellwidth=3.0in ]');&lt;/P&gt;
&lt;P&gt;endcomp;&lt;/P&gt;
&lt;P&gt;Run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;</description>
      <pubDate>Mon, 29 Aug 2016 15:41:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Why-Checkbox-graphic-Isn-t-Displaying/m-p/294868#M16717</guid>
      <dc:creator>nupedoc79</dc:creator>
      <dc:date>2016-08-29T15:41:44Z</dc:date>
    </item>
    <item>
      <title>Re: Why Checkbox graphic Isn't Displaying</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Why-Checkbox-graphic-Isn-t-Displaying/m-p/294935#M16721</link>
      <description>&lt;P&gt;Are you expecting to get an actual Image or the text "checkbox image Normal"?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I do not see anything in that Proc Report code that references any images.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Many users here don't want to download Excel files because of virus potential, others have such things blocked by security software. Also if you give us Excel we have to create a SAS data set and due to the non-existent constraints on Excel data cells the result we end up with may not have variables of the same type (numeric or character) and even values.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to post example data best is a datastep. You can generate that by following the information in this link.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Aug 2016 20:19:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Why-Checkbox-graphic-Isn-t-Displaying/m-p/294935#M16721</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-08-29T20:19:50Z</dc:date>
    </item>
    <item>
      <title>Re: Why Checkbox graphic Isn't Displaying</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Why-Checkbox-graphic-Isn-t-Displaying/m-p/295005#M16725</link>
      <description>&lt;P&gt;Thanks for the reply.&amp;nbsp; The excel file contains the below statements which are stored in the SAS dataset referenced in the Proc Report statemtent.&lt;/P&gt;
&lt;TABLE width="1017"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="1017"&gt;Table3&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="1017"&gt;Blood Pressure _______________________ Pulse________ Temp_______F/C&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Weight _____lb/kg&amp;nbsp; Height ________in/cm BMI____________&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;"^{style [ preimage='\\leto\Health Services\Revenue Management\Risk Analytics\Care\PA\2016\Models\Dev-AA\BH\Logo\checkboxv1.png']Normal}";&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&amp;nbsp;"^{style [ preimage='\\leto\Health Services\Revenue Management\Risk Analytics\Care\PA\2016\Models\Dev-AA\BH\Logo\checkboxv1.png']Abnormal______}";&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;"^{style [ preimage='\\leto\Health Services\Revenue Management\Risk Analytics\Care\PA\2016\Models\Dev-AA\BH\Logo\checkboxv1.png']Normal}";&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&amp;nbsp;"^{style [ preimage='\\leto\Health Services\Revenue Management\Risk Analytics\Care\PA\2016\Models\Dev-AA\BH\Logo\checkboxv1.png']Abnormal______}";&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;"^{style [ preimage='\\leto\Health Services\Revenue Management\Risk Analytics\Care\PA\2016\Models\Dev-AA\BH\Logo\checkboxv1.png']Normal}";&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&amp;nbsp;"^{style [ preimage='\\leto\Health Services\Revenue Management\Risk Analytics\Care\PA\2016\Models\Dev-AA\BH\Logo\checkboxv1.png']Abnormal______}";&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;"^{style [ preimage='\\leto\Health Services\Revenue Management\Risk Analytics\Care\PA\2016\Models\Dev-AA\BH\Logo\checkboxv1.png']Normal}";&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&amp;nbsp;"^{style [ preimage='\\leto\Health Services\Revenue Management\Risk Analytics\Care\PA\2016\Models\Dev-AA\BH\Logo\checkboxv1.png']Abnormal______}";&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;"^{style [ preimage='\\leto\Health Services\Revenue Management\Risk Analytics\Care\PA\2016\Models\Dev-AA\BH\Logo\checkboxv1.png']Normal}";&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&amp;nbsp;"^{style [ preimage='\\leto\Health Services\Revenue Management\Risk Analytics\Care\PA\2016\Models\Dev-AA\BH\Logo\checkboxv1.png']Abnormal______}";&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;"^{style [ preimage='\\leto\Health Services\Revenue Management\Risk Analytics\Care\PA\2016\Models\Dev-AA\BH\Logo\checkboxv1.png']Normal}";&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&amp;nbsp;"^{style [ preimage='\\leto\Health Services\Revenue Management\Risk Analytics\Care\PA\2016\Models\Dev-AA\BH\Logo\checkboxv1.png']Abnormal______}";&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;"^{style [ preimage='\\leto\Health Services\Revenue Management\Risk Analytics\Care\PA\2016\Models\Dev-AA\BH\Logo\checkboxv1.png']Normal}";&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&amp;nbsp;"^{style [ preimage='\\leto\Health Services\Revenue Management\Risk Analytics\Care\PA\2016\Models\Dev-AA\BH\Logo\checkboxv1.png']Abnormal______}";&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;"^{style [ preimage='\\leto\Health Services\Revenue Management\Risk Analytics\Care\PA\2016\Models\Dev-AA\BH\Logo\checkboxv1.png']Normal}";&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&amp;nbsp;"^{style [ preimage='\\leto\Health Services\Revenue Management\Risk Analytics\Care\PA\2016\Models\Dev-AA\BH\Logo\checkboxv1.png']Abnormal______}";&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;</description>
      <pubDate>Mon, 29 Aug 2016 23:40:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Why-Checkbox-graphic-Isn-t-Displaying/m-p/295005#M16725</guid>
      <dc:creator>nupedoc79</dc:creator>
      <dc:date>2016-08-29T23:40:33Z</dc:date>
    </item>
    <item>
      <title>Re: Why Checkbox graphic Isn't Displaying</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Why-Checkbox-graphic-Isn-t-Displaying/m-p/295089#M16730</link>
      <description>&lt;P&gt;I'm expecting a a graphic checkbox next to the words Normal and Abnormal. The variable Table3 on the Proc Report will translated to each of the style statements. The style statements are stored in the sas dataset reference in the Proc Report logic.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Aug 2016 09:23:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Why-Checkbox-graphic-Isn-t-Displaying/m-p/295089#M16730</guid>
      <dc:creator>nupedoc79</dc:creator>
      <dc:date>2016-08-30T09:23:06Z</dc:date>
    </item>
    <item>
      <title>Re: Why Checkbox graphic Isn't Displaying</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Why-Checkbox-graphic-Isn-t-Displaying/m-p/295336#M16744</link>
      <description>&lt;P&gt;Instead of many repeats of a JPG how about inserting a UNICODE 2610 character?&lt;/P&gt;</description>
      <pubDate>Tue, 30 Aug 2016 21:46:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Why-Checkbox-graphic-Isn-t-Displaying/m-p/295336#M16744</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-08-30T21:46:34Z</dc:date>
    </item>
    <item>
      <title>Re: Why Checkbox graphic Isn't Displaying</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Why-Checkbox-graphic-Isn-t-Displaying/m-p/295535#M16750</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&amp;nbsp;Also, you do not show your ODS statements -- I suspect you are using ODS EXCEL because TAGSETS.EXCELXP does not use images. But you could also use ODS HTML or ODS MSOFFICE2K, so without more information about your destination, it is hard to tell.&lt;BR /&gt;&lt;BR /&gt;Also, you are using an ESCAPECHAR function but do not show your ODS ESCAPECHAR statement:&lt;BR /&gt;ods escapechar='^';&lt;BR /&gt;&lt;BR /&gt;Last, the reason your destination matters is that you have to be sure that your destination supports both ESCAPECHAR and PREIMAGE. So this might be a question for Tech Support. At this point, no one can test similar code because your ODS destination is unknown.&lt;BR /&gt;&lt;BR /&gt;cynthia&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2016 15:07:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Why-Checkbox-graphic-Isn-t-Displaying/m-p/295535#M16750</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2016-08-31T15:07:30Z</dc:date>
    </item>
  </channel>
</rss>

