<?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 ARRAY is giving me character conversion log message in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/ARRAY-is-giving-me-character-conversion-log-message/m-p/710033#M218486</link>
    <description>&lt;P&gt;Him&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am receiving a log message "&lt;EM&gt;Character values have been converted to numeric values at the places given b&lt;/EM&gt;y" in my "&lt;CODE class=" language-sas"&gt; do over _value;&lt;/CODE&gt;&amp;nbsp;" statement. This caused bc the dataset is empty.&amp;nbsp; How do I fix this log message? thanks&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data pfinal1;
	merge  tmerge_xl  tmerge_xl3 ; 
  	by ord1 aebodsys  ;

	 if ord1 in (1 2) then do;
	     array _value  ctrtg1 ctrtg2 ctrtg3 ctrtg4 call ; 
		 	 do over _value;
		     	         if _value = "" then _value="0 (0.0%)";
		 	 end; 	 
	  end;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 07 Jan 2021 20:15:03 GMT</pubDate>
    <dc:creator>HitmonTran</dc:creator>
    <dc:date>2021-01-07T20:15:03Z</dc:date>
    <item>
      <title>ARRAY is giving me character conversion log message</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ARRAY-is-giving-me-character-conversion-log-message/m-p/710033#M218486</link>
      <description>&lt;P&gt;Him&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am receiving a log message "&lt;EM&gt;Character values have been converted to numeric values at the places given b&lt;/EM&gt;y" in my "&lt;CODE class=" language-sas"&gt; do over _value;&lt;/CODE&gt;&amp;nbsp;" statement. This caused bc the dataset is empty.&amp;nbsp; How do I fix this log message? thanks&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data pfinal1;
	merge  tmerge_xl  tmerge_xl3 ; 
  	by ord1 aebodsys  ;

	 if ord1 in (1 2) then do;
	     array _value  ctrtg1 ctrtg2 ctrtg3 ctrtg4 call ; 
		 	 do over _value;
		     	         if _value = "" then _value="0 (0.0%)";
		 	 end; 	 
	  end;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 07 Jan 2021 20:15:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ARRAY-is-giving-me-character-conversion-log-message/m-p/710033#M218486</guid>
      <dc:creator>HitmonTran</dc:creator>
      <dc:date>2021-01-07T20:15:03Z</dc:date>
    </item>
    <item>
      <title>Re: ARRAY is giving me character conversion log message</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ARRAY-is-giving-me-character-conversion-log-message/m-p/710044#M218490</link>
      <description>So those variables don't exist in this case? Have you tried explicitly listing the types on the array statement and see what happens?&lt;BR /&gt;&lt;BR /&gt;array _value (*) $20. ctrtg1-ctrtg4 call;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 07 Jan 2021 20:41:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ARRAY-is-giving-me-character-conversion-log-message/m-p/710044#M218490</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-01-07T20:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: ARRAY is giving me character conversion log message</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ARRAY-is-giving-me-character-conversion-log-message/m-p/710047#M218493</link>
      <description>&lt;P&gt;Set the variable LENGTH (and type) in the ARRAY statement.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;array _value $20 ctrtg1-ctrtg4 call ; &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 07 Jan 2021 20:59:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ARRAY-is-giving-me-character-conversion-log-message/m-p/710047#M218493</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-01-07T20:59:45Z</dc:date>
    </item>
  </channel>
</rss>

