<?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: Not able to split a SAS dataset due to numeric value converting to scientific notation in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Not-able-to-split-a-SAS-dataset-due-to-numeric-value-converting/m-p/906049#M357807</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/255530"&gt;@Abhinav26&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The default format for numeric values assigned by the INTO clause is BEST8. (see last bullet point in &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/sqlproc/n1tupenuhmu1j0n19d3curl9igt4.htm#n1g7o46hni77g9n15jlw7r1vx7uz" target="_blank" rel="noopener"&gt;section "Details" of the documentation&lt;/A&gt;), which is not sufficient for 9-digit integers such as&amp;nbsp;&lt;SPAN&gt;1.1279E8. Specify an appropriate format like 9. or (to be on the safe side) 16. to avoid the issue with the scientific notation:&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;select max(sno) &lt;FONT color="#3366FF"&gt;&lt;STRONG&gt;format=16.&lt;/STRONG&gt;&lt;/FONT&gt; into :dcnt ...&lt;/PRE&gt;</description>
    <pubDate>Mon, 04 Dec 2023 16:17:06 GMT</pubDate>
    <dc:creator>FreelanceReinh</dc:creator>
    <dc:date>2023-12-04T16:17:06Z</dc:date>
    <item>
      <title>Not able to split a SAS dataset due to numeric value converting to scientific notation</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Not-able-to-split-a-SAS-dataset-due-to-numeric-value-converting/m-p/906016#M357797</link>
      <description>&lt;P&gt;I am getting below error while trying to split a dataset.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;MPRINT(DIVIDE_EXTRACTION): data interim."mbr_rally_9"n;&lt;BR /&gt;SYMBOLGEN: Macro variable DNAME resolves to mar rally&lt;BR /&gt;MPRINT(DIVIDE_EXTRACTION): set mar rally;&lt;BR /&gt;SYMBOLGEN: Macro variable DCNT resolves to 1.1279E8&lt;BR /&gt;ERROR: A character operand was found in the %EVAL function or %IF condition where a numeric operand is required. The condition was:&lt;BR /&gt;1.1279E8+1&lt;BR /&gt;SYMBOLGEN: Macro variable DIV resolves to 14098500&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have attached the code for the reference&lt;/P&gt;
&lt;P&gt;Please let me know if anybody needs any more information on this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Dec 2023 14:46:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Not-able-to-split-a-SAS-dataset-due-to-numeric-value-converting/m-p/906016#M357797</guid>
      <dc:creator>Abhinav26</dc:creator>
      <dc:date>2023-12-04T14:46:16Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to split a SAS dataset due to numeric value converting to scientific notation</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Not-able-to-split-a-SAS-dataset-due-to-numeric-value-converting/m-p/906018#M357799</link>
      <description>used mar rally instead of mbr_rally as autocorrect was highlighting it as error and disabling me to post that question.</description>
      <pubDate>Mon, 04 Dec 2023 14:47:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Not-able-to-split-a-SAS-dataset-due-to-numeric-value-converting/m-p/906018#M357799</guid>
      <dc:creator>Abhinav26</dc:creator>
      <dc:date>2023-12-04T14:47:18Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to split a SAS dataset due to numeric value converting to scientific notation</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Not-able-to-split-a-SAS-dataset-due-to-numeric-value-converting/m-p/906049#M357807</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/255530"&gt;@Abhinav26&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The default format for numeric values assigned by the INTO clause is BEST8. (see last bullet point in &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/sqlproc/n1tupenuhmu1j0n19d3curl9igt4.htm#n1g7o46hni77g9n15jlw7r1vx7uz" target="_blank" rel="noopener"&gt;section "Details" of the documentation&lt;/A&gt;), which is not sufficient for 9-digit integers such as&amp;nbsp;&lt;SPAN&gt;1.1279E8. Specify an appropriate format like 9. or (to be on the safe side) 16. to avoid the issue with the scientific notation:&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;select max(sno) &lt;FONT color="#3366FF"&gt;&lt;STRONG&gt;format=16.&lt;/STRONG&gt;&lt;/FONT&gt; into :dcnt ...&lt;/PRE&gt;</description>
      <pubDate>Mon, 04 Dec 2023 16:17:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Not-able-to-split-a-SAS-dataset-due-to-numeric-value-converting/m-p/906049#M357807</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2023-12-04T16:17:06Z</dc:date>
    </item>
  </channel>
</rss>

