<?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: WARNING: Some character data was lost during transcoding in column: in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700576#M214410</link>
    <description>&lt;P&gt;I guess for noncontiguous you could try a hack like:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data inv_sept ; 
  set sale."sale_sept$A:C"n;  /*Read cols A-C*/
  set sale."sale_sept$E:F"n;  /*Read cols E-F*/ 
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 20 Nov 2020 18:13:36 GMT</pubDate>
    <dc:creator>Quentin</dc:creator>
    <dc:date>2020-11-20T18:13:36Z</dc:date>
    <item>
      <title>WARNING: Some character data was lost during transcoding in column:</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700285#M214298</link>
      <description>&lt;P&gt;Hi, I am getting a warning message of "Some character data was lost during transcoding in column" from the below codes.&lt;/P&gt;&lt;P&gt;I have two questions and any helps or advice are gladly appreciated.&lt;/P&gt;&lt;P&gt;1. Is there any way to fix the warning message?&lt;/P&gt;&lt;P&gt;2. It appears Sale_description is causing this issue but I don't even have this variable in the keep = statement. Is there any way to only read 4 variables from the dataset so we don't see the warning message (which is caused by sale_description)?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let a = /Inventory/group/sale_20200930.xlsx ;
libname sale xlsx "&amp;amp;a";


data inv_sept ; 
set sale.sale_sept (keep = sale_amount sale_target sale_location sale_person); 
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;WARNING: Some character data was lost during transcoding in column: Sale_description at obs 332&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;...........&lt;/P&gt;&lt;P&gt;WARNING: Some character data was lost during transcoding in column: Sale_description at obs 998&lt;BR /&gt;NOTE: The import data set has 1284 observations and 25 variables.&lt;BR /&gt;NOTE: There were 1284 observations read from the data set SALE.SALE_SEPT&lt;BR /&gt;NOTE: The data set WORK.INV_SEPT has 1284 observations and 4 variables.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.60 seconds&lt;BR /&gt;cpu time 0.59 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Nov 2020 18:06:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700285#M214298</guid>
      <dc:creator>LL5</dc:creator>
      <dc:date>2020-11-19T18:06:20Z</dc:date>
    </item>
    <item>
      <title>Re: WARNING: Some character data was lost during transcoding in column:</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700300#M214301</link>
      <description>&lt;P&gt;If you aren't using the variable then ignore the warning.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you need to have a clean "log" you could try making a copy of your source file without that column.&lt;/P&gt;
&lt;P&gt;Or try the option Transcode_Fail = Silent on the libname statement.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Nov 2020 19:04:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700300#M214301</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-11-19T19:04:30Z</dc:date>
    </item>
    <item>
      <title>Re: WARNING: Some character data was lost during transcoding in column:</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700305#M214303</link>
      <description>&lt;P&gt;Thanks Ballardw, do you mind to show me how to make a copy of my source file without that column?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Nov 2020 19:23:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700305#M214303</guid>
      <dc:creator>LL5</dc:creator>
      <dc:date>2020-11-19T19:23:03Z</dc:date>
    </item>
    <item>
      <title>Re: WARNING: Some character data was lost during transcoding in column:</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700320#M214311</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/89004"&gt;@LL5&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thanks Ballardw, do you mind to show me how to make a copy of my source file without that column?&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Make a copy of the file using system tools.&lt;/P&gt;
&lt;P&gt;Open the copy.&lt;/P&gt;
&lt;P&gt;Highlight the column&lt;/P&gt;
&lt;P&gt;Delete the column&lt;/P&gt;
&lt;P&gt;Save the file&lt;/P&gt;
&lt;P&gt;Point the SAS code to the new file.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Nov 2020 20:14:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700320#M214311</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-11-19T20:14:21Z</dc:date>
    </item>
    <item>
      <title>Re: WARNING: Some character data was lost during transcoding in column:</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700322#M214313</link>
      <description>&lt;P&gt;Hi &lt;A class="trigger-hovercard" style="color: #007dc3;" href="https://communities.sas.com/t5/user/viewprofilepage/user-id/89004" target="_blank"&gt;LL5&lt;/A&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To make sure you don't lose character data during transcoding, you need to expand your character lengths before transcoding occur. The simplest way of doing it is by using &lt;STRONG&gt;CVP (Character Variable Padding) special Engine&lt;/STRONG&gt; which is part of SAS BASE. This technique is described in detail in my recent blog post&amp;nbsp;&lt;A title="Avoiding character data loss during transcoding by using CVP Engine" href="https://blogs.sas.com/content/sgf/2020/08/12/expanding-lengths-of-all-character-variables-in-sas-data-sets/" target="_self"&gt;Expanding lengths of all character variables in SAS data sets&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Nov 2020 20:22:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700322#M214313</guid>
      <dc:creator>LeonidBatkhan</dc:creator>
      <dc:date>2020-11-19T20:22:04Z</dc:date>
    </item>
    <item>
      <title>Re: WARNING: Some character data was lost during transcoding in column:</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700327#M214315</link>
      <description>&lt;P&gt;Thanks Leonid, but since I am reading an external excel file by using xlsx libname here, would CVP work in this case? It appears to me that CVP engine applies to sas dataset only. It'd be great if you can share some more insights.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Nov 2020 20:41:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700327#M214315</guid>
      <dc:creator>LL5</dc:creator>
      <dc:date>2020-11-19T20:41:49Z</dc:date>
    </item>
    <item>
      <title>Re: WARNING: Some character data was lost during transcoding in column:</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700330#M214316</link>
      <description>&lt;P&gt;Thanks again. This approach may not work in my work situation because there would be no human intervention since the the program runs automatically via a scheduled job, but appreciated for your advice.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Nov 2020 20:44:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700330#M214316</guid>
      <dc:creator>LL5</dc:creator>
      <dc:date>2020-11-19T20:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: WARNING: Some character data was lost during transcoding in column:</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700339#M214320</link>
      <description>&lt;P&gt;I guess your SAS session has encoding WLATIN1, while your .xlsx file has UTF-8 encoding. You need to change your SAS session's encoding to UTF-8: &lt;A href="https://go.documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.5&amp;amp;docsetId=movefile&amp;amp;docsetTarget=n06qan4j3ffr6fn11bs4q11r8r56.htm&amp;amp;locale=en#n01964oa2but8wn1kkfk95adhlfj" target="_self"&gt;How to Run a SAS Session in UTF-8 Encoding&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can find out your SAS session encoding by running this code snippet:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc options option=encoding;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Hope this helps.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Nov 2020 20:59:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700339#M214320</guid>
      <dc:creator>LeonidBatkhan</dc:creator>
      <dc:date>2020-11-19T20:59:30Z</dc:date>
    </item>
    <item>
      <title>Re: WARNING: Some character data was lost during transcoding in column:</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700349#M214324</link>
      <description>&lt;P&gt;My SAS session has encoding&amp;nbsp;LATIN1. I tried to change the xlsx libname to proc import as below. I also added the encoding to the filename, but I am still getting the same warning message.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename a '/Inventory/group/sale_20200930.xlsx’ encoding='LATIN1' ;
PROC IMPORT
datafile = a
out= inv_sept  (keep = sale_amount sale_target sale_location sale_person)
dbms=xlsx
replace;
sheet = "sale_sept";
RUN;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 19 Nov 2020 21:25:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700349#M214324</guid>
      <dc:creator>LL5</dc:creator>
      <dc:date>2020-11-19T21:25:31Z</dc:date>
    </item>
    <item>
      <title>Re: WARNING: Some character data was lost during transcoding in column:</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700353#M214328</link>
      <description>&lt;P&gt;LATIN1 is a single byte encoding. So it only has 256 possible characters that can be stored. You need to run SAS using UTF-8 encoding to be sure that you can read any character that might be in the XLSX file.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Nov 2020 21:32:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700353#M214328</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-11-19T21:32:59Z</dc:date>
    </item>
    <item>
      <title>Re: WARNING: Some character data was lost during transcoding in column:</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700358#M214330</link>
      <description>&lt;P&gt;If your .xlxs file has UTF-8 encoding, and it has some UTF-8 characters that take more than 1 byte you may lose characters due to transcoding if your SAS has LATIN1 encoding. As I indicated in my previous reply, you need to bring your SAS encoding to UTF-8, not your UTF-8 encoded .xlxs file to LATIN1. LATIN1 encoding uses 1 byte per character, while UTF-8 uses up to 4 bytes per character. Therefore you need to match your SAS session encoding to your file encoding, not vice versa.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Nov 2020 21:46:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700358#M214330</guid>
      <dc:creator>LeonidBatkhan</dc:creator>
      <dc:date>2020-11-19T21:46:34Z</dc:date>
    </item>
    <item>
      <title>Re: WARNING: Some character data was lost during transcoding in column:</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700361#M214331</link>
      <description>&lt;P&gt;Understood and makes sense. Unfortunately I am not able to change the encoding to&amp;nbsp;'UTF-8' in my SAS session.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Nov 2020 21:57:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700361#M214331</guid>
      <dc:creator>LL5</dc:creator>
      <dc:date>2020-11-19T21:57:31Z</dc:date>
    </item>
    <item>
      <title>Re: WARNING: Some character data was lost during transcoding in column:</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700453#M214359</link>
      <description>1) Transform your excel file into CSV file by Save As menu.&lt;BR /&gt;And import this csv again.&lt;BR /&gt;&lt;BR /&gt;filename a '/Inventory/group/sale_20200930.csv’ encoding='utf8' ;&lt;BR /&gt;PROC IMPORT&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;2) Try utf8 encoding:&lt;BR /&gt;filename a '/Inventory/group/sale_20200930.xlsx’ encoding='utf8' ;&lt;BR /&gt;PROC IMPORT&lt;BR /&gt;&lt;BR /&gt;or &lt;BR /&gt;libname a '/Inventory/group/sale_20200930.xlsx’  inencoding='utf8'  outencoding='utf8'  ;</description>
      <pubDate>Fri, 20 Nov 2020 12:46:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700453#M214359</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2020-11-20T12:46:23Z</dc:date>
    </item>
    <item>
      <title>Re: WARNING: Some character data was lost during transcoding in column:</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700495#M214384</link>
      <description>&lt;P&gt;Thanks Ksharp. The issue is the excel file I have has utf-8 but my SAS session (E.G) has Latin1. As pointed out by Leonid's post earlier, I would need to change my SAS session to utf-8, so adding any encoding option in the code would not solve the problem. Unfortunately, either changing the file from xlsx to csv or change my SAS configuration file from Latin1 to utf-8 would not be doable in my work situation, I could only leave the warning message as it.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Separately, since I have an external file instead of a sas dataset, I can't use&amp;nbsp; inencoding/outencoding because it is not implemented in the XLSX engine, but good to know this technique. Thanks again.&lt;/P&gt;</description>
      <pubDate>Fri, 20 Nov 2020 15:22:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700495#M214384</guid>
      <dc:creator>LL5</dc:creator>
      <dc:date>2020-11-20T15:22:47Z</dc:date>
    </item>
    <item>
      <title>Re: WARNING: Some character data was lost during transcoding in column:</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700539#M214392</link>
      <description>&lt;P&gt;Talk to whoever in your company is responsible for setting up SAS.&amp;nbsp; It is their job to enable you to be able to run SAS with the settings you need.&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;If you are running SAS from the command line then they can create a different command (or add an option to the existing command) to launch SAS with proper encoding.&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;If you are using SAS/Studio or Enterprise Guide or other method to connect to a SAS session running on an application server then they can create a separate connection for you to use to launch a SAS session using the encoding you need.&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;If you are using Windows and launching SAS from the desktop then they can make "icons" that appear in your Start menu to launch SAS using the encoding you need.&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Fri, 20 Nov 2020 16:10:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700539#M214392</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-11-20T16:10:32Z</dc:date>
    </item>
    <item>
      <title>Re: WARNING: Some character data was lost during transcoding in column:</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700544#M214394</link>
      <description>&lt;P&gt;Thanks Tom. The SAS programs are ran in batch under Unix, so it may not help even I update my SAS E.G session. I informed the SAS administrator about the warning message, it just seems there might be no way to fix this issue by simply updating the SAS code. But all the information I collected here are helpful for me to understand the reason.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Nov 2020 16:28:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700544#M214394</guid>
      <dc:creator>LL5</dc:creator>
      <dc:date>2020-11-20T16:28:40Z</dc:date>
    </item>
    <item>
      <title>Re: WARNING: Some character data was lost during transcoding in column:</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700545#M214395</link>
      <description>&lt;P&gt;Below is untested, but it is possible to provide an excel range when you specify the dataset on the SET statement.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data inv_sept ; 
  set sale."sale_sept$A:C"n; 
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;That might keep the XLSX engine from reading the extra columns.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Unfortunately, it looks like it only supports contiguous ranges. Below when I give it a noncontiguous range, $A:C,E:F , I still get column D.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data inv_sept ; 
set sale."sale_sept$A:C,E:F"n; 
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 20 Nov 2020 16:30:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700545#M214395</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2020-11-20T16:30:49Z</dc:date>
    </item>
    <item>
      <title>Re: WARNING: Some character data was lost during transcoding in column:</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700554#M214399</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/89004"&gt;@LL5&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thanks Tom. The SAS programs are ran in batch under Unix, so it may not help even I update my SAS E.G session. I informed the SAS administrator about the warning message, it just seems there might be no way to fix this issue by simply updating the SAS code. But all the information I collected here are helpful for me to understand the reason.&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;So currently you are running a command like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;sas myprogram&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;So either have them make a new command you can use or add an option to the existing command so that you can instead using a command like one of these.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;sas_u8 myprogram
sas -u8 myprogram&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 20 Nov 2020 16:47:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700554#M214399</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-11-20T16:47:14Z</dc:date>
    </item>
    <item>
      <title>Re: WARNING: Some character data was lost during transcoding in column:</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700560#M214403</link>
      <description>&lt;P&gt;Hi Quentin, thanks for this alternative and creative solution. I have&amp;nbsp;&lt;SPAN&gt;noncontiguous ranges but this approach would be helpful to other work situation. Thanks again.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Nov 2020 16:58:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700560#M214403</guid>
      <dc:creator>LL5</dc:creator>
      <dc:date>2020-11-20T16:58:48Z</dc:date>
    </item>
    <item>
      <title>Re: WARNING: Some character data was lost during transcoding in column:</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700561#M214404</link>
      <description>&lt;P&gt;Thanks Tom again for all the advice.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Nov 2020 16:59:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WARNING-Some-character-data-was-lost-during-transcoding-in/m-p/700561#M214404</guid>
      <dc:creator>LL5</dc:creator>
      <dc:date>2020-11-20T16:59:40Z</dc:date>
    </item>
  </channel>
</rss>

