<?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: ods excel outputs '????' in character column in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/ods-excel-outputs-in-character-column/m-p/778044#M247634</link>
    <description>If you really want to see what's there you can format the variable as a hex character and output it then look up the code online to see what the symbol is to remove it or understand what's happening. &lt;BR /&gt;&lt;BR /&gt;data demo;&lt;BR /&gt;set sashelp.class (obs=3);&lt;BR /&gt;*add invisible tab to field;&lt;BR /&gt;name_original = put(name, $hex.);&lt;BR /&gt;if _n_ = 2 then name=catt(name, '09'x);&lt;BR /&gt;name_hex = put(name, $hex.);&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;Title 'Note second record differs - has 09 (TAB) instead of 20 (Space)';&lt;BR /&gt;proc print data=demo;&lt;BR /&gt;run;</description>
    <pubDate>Tue, 02 Nov 2021 22:28:20 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2021-11-02T22:28:20Z</dc:date>
    <item>
      <title>ods excel outputs '????' in character column</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-excel-outputs-in-character-column/m-p/778039#M247630</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a SAS dataset that has a character column . format $255.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It has values just like other character columns.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I create an excel extract using ods excel, for this particular column it shows the values as for example . This it does for all rows but only for this column.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried compress, trim and strip on this column thinking it could be reacting to spaces maybe. Didnt help.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Has anyone encountered this issue?&amp;nbsp;What and how can I&amp;nbsp; check if there are any special characters in that column in the SAS dataset that is causing this issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE width="892"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="892"&gt;COMMERCIAL ????????????????????????????????????????????????????????????????????????????????????????????????????&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The column itself has only the value COMMERCIAL.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Nov 2021 22:08:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-excel-outputs-in-character-column/m-p/778039#M247630</guid>
      <dc:creator>Anuz</dc:creator>
      <dc:date>2021-11-02T22:08:44Z</dc:date>
    </item>
    <item>
      <title>Re: ods excel outputs '????' in character column</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-excel-outputs-in-character-column/m-p/778040#M247631</link>
      <description>Try a test, for the column recreate the data set separately, replace the value in that cell with a newly typed value of COMMERCIAL and see what happens. &lt;BR /&gt;&lt;BR /&gt;For example, if the issue was with SASHELP.HEART and the field was status, what happens if you do the following:&lt;BR /&gt;&lt;BR /&gt;data heart;&lt;BR /&gt;set sashelp.heart;&lt;BR /&gt;variableIssue = "COMMERCIAL";&lt;BR /&gt;run;&lt;BR /&gt;ods excel file .......;&lt;BR /&gt;....&lt;BR /&gt;&lt;BR /&gt;proc report data=heart;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;ods excel close;&lt;BR /&gt;&lt;BR /&gt;If the issue doesn't remain, then try the solution below:&lt;BR /&gt;&lt;BR /&gt;variable = compress(variable, , 'so');&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 02 Nov 2021 22:14:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-excel-outputs-in-character-column/m-p/778040#M247631</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-11-02T22:14:20Z</dc:date>
    </item>
    <item>
      <title>Re: ods excel outputs '????' in character column</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-excel-outputs-in-character-column/m-p/778041#M247632</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;- Tried that. If I create a new column and set the value to COMMERICAL, it outputs fine into the excel.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is something that is hidden in this column that I unable to find.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Nov 2021 22:21:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-excel-outputs-in-character-column/m-p/778041#M247632</guid>
      <dc:creator>Anuz</dc:creator>
      <dc:date>2021-11-02T22:21:33Z</dc:date>
    </item>
    <item>
      <title>Re: ods excel outputs '????' in character column</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-excel-outputs-in-character-column/m-p/778042#M247633</link>
      <description>Correct, which is why I suggested the COMPRESS with the S option which should remove any invisible characters. You could also manually truncate the value to just COMMERCIAL. &lt;BR /&gt;&lt;BR /&gt;variable = substr(variable, 1, 11); and the remainder would be truncated which should fix the issue. &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 02 Nov 2021 22:23:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-excel-outputs-in-character-column/m-p/778042#M247633</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-11-02T22:23:43Z</dc:date>
    </item>
    <item>
      <title>Re: ods excel outputs '????' in character column</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-excel-outputs-in-character-column/m-p/778044#M247634</link>
      <description>If you really want to see what's there you can format the variable as a hex character and output it then look up the code online to see what the symbol is to remove it or understand what's happening. &lt;BR /&gt;&lt;BR /&gt;data demo;&lt;BR /&gt;set sashelp.class (obs=3);&lt;BR /&gt;*add invisible tab to field;&lt;BR /&gt;name_original = put(name, $hex.);&lt;BR /&gt;if _n_ = 2 then name=catt(name, '09'x);&lt;BR /&gt;name_hex = put(name, $hex.);&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;Title 'Note second record differs - has 09 (TAB) instead of 20 (Space)';&lt;BR /&gt;proc print data=demo;&lt;BR /&gt;run;</description>
      <pubDate>Tue, 02 Nov 2021 22:28:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-excel-outputs-in-character-column/m-p/778044#M247634</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-11-02T22:28:20Z</dc:date>
    </item>
    <item>
      <title>Re: ods excel outputs '????' in character column</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-excel-outputs-in-character-column/m-p/778045#M247635</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;I had tried the compress with s option.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That column has other values too . COMMERCIAL was just an example. There are other values like NOT FOR SEGMENT etc.&lt;/P&gt;
&lt;P&gt;For any values in this particular column it adds these question marks. It has at least 100 question marks after the value.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Other columns with the same format just display the values with no such question marks added at the end when extracted to excel.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Nov 2021 22:28:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-excel-outputs-in-character-column/m-p/778045#M247635</guid>
      <dc:creator>Anuz</dc:creator>
      <dc:date>2021-11-02T22:28:26Z</dc:date>
    </item>
    <item>
      <title>Re: ods excel outputs '????' in character column</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-excel-outputs-in-character-column/m-p/778046#M247636</link>
      <description>Show the values as Hex then so you can isolate the character and then compress it specifically.</description>
      <pubDate>Tue, 02 Nov 2021 22:29:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-excel-outputs-in-character-column/m-p/778046#M247636</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-11-02T22:29:29Z</dc:date>
    </item>
    <item>
      <title>Re: ods excel outputs '????' in character column</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-excel-outputs-in-character-column/m-p/778047#M247637</link>
      <description>&lt;P&gt;The ? means that you have some character in the value that does not exist in the current font you are using for Excel. It may mean foreign language or just some form of non-printable character. The question mark in effect says" there is a character here but I do not know what it is or how to display it with current settings".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Many question marks means many characters.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Nov 2021 22:32:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-excel-outputs-in-character-column/m-p/778047#M247637</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-11-02T22:32:43Z</dc:date>
    </item>
    <item>
      <title>Re: ods excel outputs '????' in character column</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-excel-outputs-in-character-column/m-p/778048#M247638</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;Tried that. And I basically i see the below as common in all the columns at the end(the new hex column)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2020202020202020202020202020202020202020202020202020202020202020202020202020202000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;so that is space (20) like you said. Why is that the strip didnt remove it. what should i use to remove it&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Nov 2021 22:35:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-excel-outputs-in-character-column/m-p/778048#M247638</guid>
      <dc:creator>Anuz</dc:creator>
      <dc:date>2021-11-02T22:35:24Z</dc:date>
    </item>
    <item>
      <title>Re: ods excel outputs '????' in character column</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-excel-outputs-in-character-column/m-p/778050#M247640</link>
      <description>SAS adds trailing spaces always so this is expected. I'd add in a hardcoded value for COMMERCIAL and compare the output from that to one from your field. Look for where they start to differ and identify the different character there. Spaces shouldn't be the issue in Excel. &lt;BR /&gt;&lt;BR /&gt;FYI - are you on SAS 9.4M3+? Before that ODS EXCEL was pre-release and buggy.</description>
      <pubDate>Tue, 02 Nov 2021 22:40:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-excel-outputs-in-character-column/m-p/778050#M247640</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-11-02T22:40:26Z</dc:date>
    </item>
    <item>
      <title>Re: ods excel outputs '????' in character column</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-excel-outputs-in-character-column/m-p/778052#M247641</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;&amp;nbsp;indeed.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried the hex format and it had a series of 20 - spaces at the end&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;as below&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;2020202020202020202020202020202020202020202020202020202020202020202020202020202000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Nov 2021 22:44:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-excel-outputs-in-character-column/m-p/778052#M247641</guid>
      <dc:creator>Anuz</dc:creator>
      <dc:date>2021-11-02T22:44:03Z</dc:date>
    </item>
    <item>
      <title>Re: ods excel outputs '????' in character column</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-excel-outputs-in-character-column/m-p/778055#M247643</link>
      <description>Actually you have a ton of 00 in there, not as 20 so those are not spaces but a NULL character. It's padded with spaces as well though.&lt;BR /&gt;Can you show a full step of how you used COMPRESS and how it didn't work?&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 02 Nov 2021 22:51:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-excel-outputs-in-character-column/m-p/778055#M247643</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-11-02T22:51:07Z</dc:date>
    </item>
    <item>
      <title>Re: ods excel outputs '????' in character column</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-excel-outputs-in-character-column/m-p/778056#M247644</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;i am on SAS 9.4M3.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I checked like you said&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;so while the hex value for Commerical shows -&amp;nbsp;434F4D4D45524349414C&lt;/P&gt;
&lt;P&gt;The original column hex values shows as below. So after 4C at the end it has the series of 202020..... how do I remove the trailing 202020&amp;nbsp; 434F4D4D45524349414C2020202020202020202020202020202020202020202020202020202020202020202020202020202000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020&lt;/P&gt;</description>
      <pubDate>Tue, 02 Nov 2021 22:51:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-excel-outputs-in-character-column/m-p/778056#M247644</guid>
      <dc:creator>Anuz</dc:creator>
      <dc:date>2021-11-02T22:51:26Z</dc:date>
    </item>
    <item>
      <title>Re: ods excel outputs '????' in character column</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-excel-outputs-in-character-column/m-p/778057#M247645</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;_ i created a new column&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;NEW_COLUMN = compress(OLD_COLUMN,,'so');&lt;/P&gt;
&lt;P&gt;and then output to the excel&amp;nbsp;&lt;/P&gt;
&lt;P&gt;the old existing column showed the value . it had some spaces after COMMERICAL before the ???? started&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE width="983"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="983"&gt;COMMERCIAL&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ????????????????????????????????????????????????????????????????????????????????????????????????????&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;The new column displayed as below . it basically removed the spaces before the ????&amp;nbsp;&lt;/P&gt;
&lt;TABLE width="883"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="883"&gt;COMMERCIAL????????????????????????????????????????????????????????????????????????????????????????????????????&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Nov 2021 22:56:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-excel-outputs-in-character-column/m-p/778057#M247645</guid>
      <dc:creator>Anuz</dc:creator>
      <dc:date>2021-11-02T22:56:43Z</dc:date>
    </item>
    <item>
      <title>Re: ods excel outputs '????' in character column</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-excel-outputs-in-character-column/m-p/778058#M247646</link>
      <description>&lt;P&gt;Try explicitly removing the 00 and see if that solves the issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you export this to excel I assume you'll see the ? on the name column but not on the name_clean column.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data demo;
set sashelp.class (obs=3);
*add invisible tab to field;
name_original = put(name, $hex.);
if _n_ = 2 then name=catt(name, '00'x);
name_hex = put(name, $hex.);
name_clean = compress(name, '00'x , 'so');
name_clean_hex = put(name_clean, $hex.);

keep name:;
run;

proc print data=demo;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 02 Nov 2021 22:57:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-excel-outputs-in-character-column/m-p/778058#M247646</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-11-02T22:57:27Z</dc:date>
    </item>
    <item>
      <title>Re: ods excel outputs '????' in character column</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-excel-outputs-in-character-column/m-p/778162#M247694</link>
      <description>Did your try PROC EXPORT ?&lt;BR /&gt;&lt;BR /&gt;or try to change your sas encoding into UTF-8 ?</description>
      <pubDate>Wed, 03 Nov 2021 12:29:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-excel-outputs-in-character-column/m-p/778162#M247694</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-11-03T12:29:07Z</dc:date>
    </item>
    <item>
      <title>Re: ods excel outputs '????' in character column</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-excel-outputs-in-character-column/m-p/778173#M247699</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;- You are a star. That worked like a charm. Thank you. Issue resolved.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Nov 2021 13:02:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-excel-outputs-in-character-column/m-p/778173#M247699</guid>
      <dc:creator>Anuz</dc:creator>
      <dc:date>2021-11-03T13:02:15Z</dc:date>
    </item>
    <item>
      <title>Re: ods excel outputs '????' in character column</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-excel-outputs-in-character-column/m-p/778175#M247700</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;- no I didn't. I managed to get the NULL and spaces removed after displaying the column in hex as&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp; suggested. Issue is now resolved.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Nov 2021 13:05:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-excel-outputs-in-character-column/m-p/778175#M247700</guid>
      <dc:creator>Anuz</dc:creator>
      <dc:date>2021-11-03T13:05:28Z</dc:date>
    </item>
  </channel>
</rss>

