<?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: how to insert the symbol &amp;#8800; in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-insert-the-symbol-8800/m-p/10744#M3026</link>
    <description>Thank you</description>
    <pubDate>Tue, 03 Nov 2009 11:17:47 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2009-11-03T11:17:47Z</dc:date>
    <item>
      <title>how to insert the symbol ≠</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-insert-the-symbol-8800/m-p/10740#M3022</link>
      <description>Hello,&lt;BR /&gt;
How can i do to insert the following symbol ≠   ?&lt;BR /&gt;
because SAS doesn't knwow it and display an ? instead of my ≠&lt;BR /&gt;
Thank you and have a nice day</description>
      <pubDate>Mon, 02 Nov 2009 16:26:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-insert-the-symbol-8800/m-p/10740#M3022</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-11-02T16:26:35Z</dc:date>
    </item>
    <item>
      <title>Re: how to insert the symbol ≠</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-insert-the-symbol-8800/m-p/10741#M3023</link>
      <description>Where/how do you want to execute SAS code to "insert" the sign?  This is important info for you to share.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Mon, 02 Nov 2009 16:31:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-insert-the-symbol-8800/m-p/10741#M3023</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2009-11-02T16:31:40Z</dc:date>
    </item>
    <item>
      <title>Re: how to insert the symbol ≠</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-insert-the-symbol-8800/m-p/10742#M3024</link>
      <description>Also, consider that you can search the SAS  support  &lt;A href="http://support.sas.com/" target="_blank"&gt;http://support.sas.com/&lt;/A&gt;  website using the Google advanced search argument below -- there is SAS-hosted documentation and supplemental technical / conference reference material:&lt;BR /&gt;
&lt;BR /&gt;
"not equal" sign site:sas.com&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Mon, 02 Nov 2009 16:42:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-insert-the-symbol-8800/m-p/10742#M3024</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2009-11-02T16:42:51Z</dc:date>
    </item>
    <item>
      <title>Re: how to insert the symbol ≠</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-insert-the-symbol-8800/m-p/10743#M3025</link>
      <description>Hi:&lt;BR /&gt;
  If you have SAS 9.2, you can use the new Unicode function with ODS ESCAPECHAR to insert unicode characters such as the NE symbol into your output report as described here:&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/odsug/61723/HTML/default/a002233270.htm#a003176459" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/odsug/61723/HTML/default/a002233270.htm#a003176459&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/odsug/61723/HTML/default/a002233270.htm#a003186676" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/odsug/61723/HTML/default/a002233270.htm#a003186676&lt;/A&gt;&lt;BR /&gt;
 &lt;BR /&gt;
 2260'x is the Unicode character for NE sign on my Windows character map. &lt;BR /&gt;
  &lt;BR /&gt;
cynthia&lt;BR /&gt;
[pre]&lt;BR /&gt;
ods rtf file='c:\temp\useuni.rtf';&lt;BR /&gt;
ods pdf file='c:\temp\useuni.pdf';&lt;BR /&gt;
ods html file='c:\temp\useuni.html' style=sasweb;&lt;BR /&gt;
                &lt;BR /&gt;
ods escapechar='^';&lt;BR /&gt;
           &lt;BR /&gt;
title  h=14pt 'Use new UNICODE function for NE sign: ^{unicode 2260}' ;&lt;BR /&gt;
proc print data=sashelp.class(obs=3) label;&lt;BR /&gt;
  label name='Name ^{unicode 2260}'&lt;BR /&gt;
        age = 'Age ^{unicode 2260}';&lt;BR /&gt;
run;&lt;BR /&gt;
ods _all_ close;&lt;BR /&gt;
title;&lt;BR /&gt;
[/pre]</description>
      <pubDate>Mon, 02 Nov 2009 17:30:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-insert-the-symbol-8800/m-p/10743#M3025</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2009-11-02T17:30:06Z</dc:date>
    </item>
    <item>
      <title>Re: how to insert the symbol ≠</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-insert-the-symbol-8800/m-p/10744#M3026</link>
      <description>Thank you</description>
      <pubDate>Tue, 03 Nov 2009 11:17:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-insert-the-symbol-8800/m-p/10744#M3026</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-11-03T11:17:47Z</dc:date>
    </item>
  </channel>
</rss>

