<?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: Empty date columns seem to be auto-filling with a &amp;quot; .&amp;quot; How would I turn this off? in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Empty-date-columns-seem-to-be-auto-filling-with-a-quot-quot-How/m-p/891166#M39635</link>
    <description>&lt;P&gt;You might try setting&amp;nbsp; (that is a single space between quotes)&lt;/P&gt;
&lt;PRE&gt;options missing=' ';&lt;/PRE&gt;
&lt;P&gt;prior to use.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Though that may depend on just how you export data to excel.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is ALWAYS something in the data set. The option sets a single character character to &lt;STRONG&gt;display&lt;/STRONG&gt; by default when a value is missing. You can basically use any single character you would like. OR create a custom format and use the format to &lt;STRONG&gt;display&lt;/STRONG&gt; even more interesting results...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is no "auto-filling" going on.&lt;/P&gt;</description>
    <pubDate>Fri, 25 Aug 2023 19:11:34 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2023-08-25T19:11:34Z</dc:date>
    <item>
      <title>Empty date columns seem to be auto-filling with a " ." How would I turn this off?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Empty-date-columns-seem-to-be-auto-filling-with-a-quot-quot-How/m-p/891098#M39633</link>
      <description>&lt;P&gt;Hello SAS Community,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have some datasets with date columns, however, some of my blank cells seem to be auto-filling with a " ."&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="mreynaud_0-1692987653892.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/87118i689A7BF40B14493D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="mreynaud_0-1692987653892.png" alt="mreynaud_0-1692987653892.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;It presents an issue when I export my data into Excel and the columns are interpreted as character instead of date.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="mreynaud_1-1692987741535.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/87119iD5FE8229EA28644E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="mreynaud_1-1692987741535.png" alt="mreynaud_1-1692987741535.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;It would be great if blank cells were left blank. Is there a simple way to turn off this future? Or do I have to add additional lines of code to replace "." with " "&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help is much appreciated!&lt;/P&gt;</description>
      <pubDate>Fri, 25 Aug 2023 18:25:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Empty-date-columns-seem-to-be-auto-filling-with-a-quot-quot-How/m-p/891098#M39633</guid>
      <dc:creator>mreynaud</dc:creator>
      <dc:date>2023-08-25T18:25:23Z</dc:date>
    </item>
    <item>
      <title>Re: Empty date columns seem to be auto-filling with a " ." How would I turn this off?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Empty-date-columns-seem-to-be-auto-filling-with-a-quot-quot-How/m-p/891164#M39634</link>
      <description>&lt;P&gt;Try setting the SAS option as follows&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options missing=' ';&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 25 Aug 2023 19:08:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Empty-date-columns-seem-to-be-auto-filling-with-a-quot-quot-How/m-p/891164#M39634</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2023-08-25T19:08:38Z</dc:date>
    </item>
    <item>
      <title>Re: Empty date columns seem to be auto-filling with a " ." How would I turn this off?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Empty-date-columns-seem-to-be-auto-filling-with-a-quot-quot-How/m-p/891166#M39635</link>
      <description>&lt;P&gt;You might try setting&amp;nbsp; (that is a single space between quotes)&lt;/P&gt;
&lt;PRE&gt;options missing=' ';&lt;/PRE&gt;
&lt;P&gt;prior to use.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Though that may depend on just how you export data to excel.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is ALWAYS something in the data set. The option sets a single character character to &lt;STRONG&gt;display&lt;/STRONG&gt; by default when a value is missing. You can basically use any single character you would like. OR create a custom format and use the format to &lt;STRONG&gt;display&lt;/STRONG&gt; even more interesting results...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is no "auto-filling" going on.&lt;/P&gt;</description>
      <pubDate>Fri, 25 Aug 2023 19:11:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Empty-date-columns-seem-to-be-auto-filling-with-a-quot-quot-How/m-p/891166#M39635</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-08-25T19:11:34Z</dc:date>
    </item>
  </channel>
</rss>

