<?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 Unable to format birth date please help. Only one digit per observation for the BirthDt variable is in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Unable-to-format-birth-date-please-help-Only-one-digit-per/m-p/770436#M244430</link>
    <description>&lt;P&gt;LIBNAME HypImpt "/home/u59445223/BIOS 6680/Hypertension Study/Data/2_Import";&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;DATA HypImpt.IowaResidents;&lt;BR /&gt;INFILE "/home/u59445223/BIOS6680/Hypertension Study/Data/1_Source/IowaResidents.csv" DSD;&lt;BR /&gt;INPUT SSN :$11.&lt;BR /&gt;Initials :$4.&lt;BR /&gt;City :$20.&lt;BR /&gt;State :$4.&lt;BR /&gt;ZipCd&lt;BR /&gt;Sex :$6.&lt;BR /&gt;Ethnicity :$12.&lt;BR /&gt;Race :$5.&lt;BR /&gt;BirthDt MMDDYY10.;&lt;BR /&gt;FormattedDate = BirthDt;&lt;BR /&gt;FORMAT FormattedDate MMDDYY10.;&lt;BR /&gt;Format BirthDt MMDDYY10.;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;PROC CONTENTS DATA= HypImpt.IowaResidents order=varnum;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;PROC PRINT DATA = HypImpt.IowaResidents;&lt;BR /&gt;LIBNAME HypImpt CLEAR;&lt;BR /&gt;RUN;&lt;/P&gt;</description>
    <pubDate>Sat, 25 Sep 2021 22:53:22 GMT</pubDate>
    <dc:creator>SilverSkyler</dc:creator>
    <dc:date>2021-09-25T22:53:22Z</dc:date>
    <item>
      <title>Unable to format birth date please help. Only one digit per observation for the BirthDt variable is</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unable-to-format-birth-date-please-help-Only-one-digit-per/m-p/770436#M244430</link>
      <description>&lt;P&gt;LIBNAME HypImpt "/home/u59445223/BIOS 6680/Hypertension Study/Data/2_Import";&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;DATA HypImpt.IowaResidents;&lt;BR /&gt;INFILE "/home/u59445223/BIOS6680/Hypertension Study/Data/1_Source/IowaResidents.csv" DSD;&lt;BR /&gt;INPUT SSN :$11.&lt;BR /&gt;Initials :$4.&lt;BR /&gt;City :$20.&lt;BR /&gt;State :$4.&lt;BR /&gt;ZipCd&lt;BR /&gt;Sex :$6.&lt;BR /&gt;Ethnicity :$12.&lt;BR /&gt;Race :$5.&lt;BR /&gt;BirthDt MMDDYY10.;&lt;BR /&gt;FormattedDate = BirthDt;&lt;BR /&gt;FORMAT FormattedDate MMDDYY10.;&lt;BR /&gt;Format BirthDt MMDDYY10.;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;PROC CONTENTS DATA= HypImpt.IowaResidents order=varnum;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;PROC PRINT DATA = HypImpt.IowaResidents;&lt;BR /&gt;LIBNAME HypImpt CLEAR;&lt;BR /&gt;RUN;&lt;/P&gt;</description>
      <pubDate>Sat, 25 Sep 2021 22:53:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unable-to-format-birth-date-please-help-Only-one-digit-per/m-p/770436#M244430</guid>
      <dc:creator>SilverSkyler</dc:creator>
      <dc:date>2021-09-25T22:53:22Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to format birth date please help. Only one digit per observation for the BirthDt variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unable-to-format-birth-date-please-help-Only-one-digit-per/m-p/770437#M244431</link>
      <description>&lt;P&gt;I don't see where you have asked a question, or described a problem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please describe the problem clearly and state the desired result.&lt;/P&gt;</description>
      <pubDate>Sat, 25 Sep 2021 22:59:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unable-to-format-birth-date-please-help-Only-one-digit-per/m-p/770437#M244431</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-09-25T22:59:43Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to format birth date please help. Only one digit per observation for the BirthDt variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unable-to-format-birth-date-please-help-Only-one-digit-per/m-p/770438#M244432</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data work.shoes;
    infile "/folders/myfolders/import/shoes.csv"
	delimiter = ","
	missover 
	dsd
	firstobs=2;
 
	informat Region $50.;
	informat Product $50.;
	informat Subsidiary $50.;
	informat Stores best12.;
	informat Sales dollar12.;
	informat Inventory dollar12.;
	informat Returns dollar12.;
 
	format Region $50.;
	format Product $50.;
	format Subsidiary $50.;
	format Stores best12.;
	format Sales dollar12.;
	format Inventory dollar12.;
	format Returns dollar12.;
 
	input
	Region $
        Product $
	Subsidiary $
	Stores
	Sales
	Inventory
	Returns;
run;
 
proc print data=work.shoes (obs=6) noobs;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Can you post a screenshot of the csv data? Also, don't you need dlm=',' if it's a csv?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 25 Sep 2021 23:32:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unable-to-format-birth-date-please-help-Only-one-digit-per/m-p/770438#M244432</guid>
      <dc:creator>tarheel13</dc:creator>
      <dc:date>2021-09-25T23:32:51Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to format birth date please help. Only one digit per observation for the BirthDt variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unable-to-format-birth-date-please-help-Only-one-digit-per/m-p/770443#M244434</link>
      <description>&lt;P&gt;I am reading from a csv file into SAS. The data set to create is&amp;nbsp;IowaResidents into the&amp;nbsp;HypImpt library. All observations are displaying in SAS as they should except for the BirthDt observations. I am only output one digit per BirthDt observation. I was hoping it would output in the format MMDDYY10. However, it does not. Only one single digit is seen in the Results window per BirthDt. Please help. What is wrong with my code please?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;LIBNAME HypImpt "/home/u59445223/BIOS 6680/Hypertension Study/Data/2_Import";&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;DATA HypImpt.IowaResidents;&lt;BR /&gt;INFILE"/home/u59445223/BIOS6680/Hypertension Study/Data/1_Source/IowaResidents.csv" DSD;&lt;BR /&gt;INPUT SSN :$11.&lt;BR /&gt;Initials :$4.&lt;BR /&gt;City :$20.&lt;BR /&gt;State :$4.&lt;BR /&gt;ZipCd&lt;BR /&gt;Sex :$6.&lt;BR /&gt;Ethnicity :$12.&lt;BR /&gt;Race :$5.&lt;BR /&gt;BirthDt MMDDYY10.;&lt;BR /&gt;FormattedDate = BirthDt;&lt;BR /&gt;FORMAT FormattedDate MMDDYY10.;&lt;BR /&gt;Format BirthDt MMDDYY10.;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;PROC CONTENTS DATA= HypImpt.IowaResidents order=varnum;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;PROC PRINT DATA = HypImpt.IowaResidents;&lt;BR /&gt;LIBNAME HypImpt CLEAR;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 26 Sep 2021 00:23:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unable-to-format-birth-date-please-help-Only-one-digit-per/m-p/770443#M244434</guid>
      <dc:creator>SilverSkyler</dc:creator>
      <dc:date>2021-09-26T00:23:27Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to format birth date please help. Only one digit per observation for the BirthDt variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unable-to-format-birth-date-please-help-Only-one-digit-per/m-p/770446#M244435</link>
      <description>&lt;P&gt;If your unformatted variable&amp;nbsp;&lt;SPAN&gt;BirthDt doesn't show a number somewhere in the range as below then you need to a) verify in your csv that the birthdate values are in the column from where you read them in your code, b) that you use the correct configuration in your infile statement (like: dsd dlm=',' truncover) and c) that you are using the correct informat for the date strings in the .csv.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Patrick_0-1632620396045.png" style="width: 708px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/64072iF53E18BC01A5E95A/image-dimensions/708x101?v=v2" width="708" height="101" role="button" title="Patrick_0-1632620396045.png" alt="Patrick_0-1632620396045.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And last but not least: What does the SAS log tell you? Any Warnings or Notes about character conversion, truncation, creation of missings etc?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 26 Sep 2021 06:25:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unable-to-format-birth-date-please-help-Only-one-digit-per/m-p/770446#M244435</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2021-09-26T06:25:48Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to format birth date please help. Only one digit per observation for the BirthDt variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unable-to-format-birth-date-please-help-Only-one-digit-per/m-p/770461#M244442</link>
      <description>&lt;P&gt;Please post the complete log of the DATA step; use this button to open a box into which to paste the log text:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bildschirmfoto 2020-04-07 um 08.32.59.jpg" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/54552i914D97BE1B0F21E5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bildschirmfoto 2020-04-07 um 08.32.59.jpg" alt="Bildschirmfoto 2020-04-07 um 08.32.59.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 26 Sep 2021 06:48:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unable-to-format-birth-date-please-help-Only-one-digit-per/m-p/770461#M244442</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-09-26T06:48:39Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to format birth date please help. Only one digit per observation for the BirthDt variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unable-to-format-birth-date-please-help-Only-one-digit-per/m-p/770462#M244443</link>
      <description>&lt;P&gt;Thank you for taking the time to respond . I was getting a LIBNAME error but everything else was reading in (I think I needed to fix something with the pathway).&amp;nbsp;The program is displaying correctly now and I am using Wordate to format the date. Thanks again.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;SPAN class="macro-keyword"&gt;%LET&lt;/SPAN&gt;&lt;SPAN class="text"&gt; CourseRoot &lt;/SPAN&gt;&lt;SPAN class="sep"&gt;=&lt;/SPAN&gt; &lt;SPAN class="sep"&gt;/&lt;/SPAN&gt;&lt;SPAN class="text"&gt;home&lt;/SPAN&gt;&lt;SPAN class="sep"&gt;/&lt;/SPAN&gt;&lt;SPAN class="text"&gt;u59445223&lt;/SPAN&gt;&lt;SPAN class="sep"&gt;/&lt;/SPAN&gt;&lt;SPAN class="text"&gt;BIOS &lt;/SPAN&gt;&lt;SPAN class="numeric"&gt;6680&lt;/SPAN&gt;&lt;SPAN class="sep"&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN class="keyword"&gt;LIBNAME&lt;/SPAN&gt;&lt;SPAN class="text"&gt; HypImpt &lt;/SPAN&gt;&lt;SPAN class="string"&gt;"&amp;amp;CourseRoot/Hypertension Study/Data/2_Import"&lt;/SPAN&gt;&lt;SPAN class="sep"&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=" block-mark"&gt;&lt;SPAN class="sec-keyword"&gt;DATA&lt;/SPAN&gt;&lt;SPAN class="text"&gt; HypImpt.IowaResidents&lt;/SPAN&gt;&lt;SPAN class="sep"&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN class="keyword"&gt;INFILE&lt;/SPAN&gt; &lt;SPAN class="string"&gt;"&amp;amp;CourseRoot/Hypertension Study/Data/1_Source/IowaResidents.csv"&lt;/SPAN&gt; &lt;SPAN class="keyword"&gt;DSD&lt;/SPAN&gt;&lt;SPAN class="sep"&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN class="keyword"&gt;INPUT&lt;/SPAN&gt;&lt;SPAN class="text"&gt; SSN &lt;/SPAN&gt;&lt;SPAN class="sep"&gt;:&lt;/SPAN&gt;&lt;SPAN class="format"&gt;$11.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN class="text"&gt;Initials &lt;/SPAN&gt;&lt;SPAN class="sep"&gt;:&lt;/SPAN&gt;&lt;SPAN class="format"&gt;$4.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN class="text"&gt;City &lt;/SPAN&gt;&lt;SPAN class="sep"&gt;:&lt;/SPAN&gt;&lt;SPAN class="format"&gt;$20.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN class="text"&gt;State &lt;/SPAN&gt;&lt;SPAN class="sep"&gt;:&lt;/SPAN&gt;&lt;SPAN class="format"&gt;$4.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN class="text"&gt;ZipCd &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN class="text"&gt;Sex &lt;/SPAN&gt;&lt;SPAN class="sep"&gt;:&lt;/SPAN&gt;&lt;SPAN class="format"&gt;$6.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN class="text"&gt;Ethnicity &lt;/SPAN&gt;&lt;SPAN class="sep"&gt;:&lt;/SPAN&gt;&lt;SPAN class="format"&gt;$12.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN class="text"&gt;Race &lt;/SPAN&gt;&lt;SPAN class="sep"&gt;:&lt;/SPAN&gt;&lt;SPAN class="format"&gt;$5.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN class="text"&gt;BirthDt &lt;/SPAN&gt;&lt;SPAN class="format"&gt;MMDDYY10.&lt;/SPAN&gt;&lt;SPAN class="sep"&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN class="keyword"&gt;FORMAT&lt;/SPAN&gt;&lt;SPAN class="text"&gt; BirthDt &lt;/SPAN&gt;&lt;SPAN class="format"&gt;WORDDATE.&lt;/SPAN&gt;&lt;SPAN class="sep"&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN class="sec-keyword"&gt;RUN&lt;/SPAN&gt;&lt;SPAN class="sep"&gt;; &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=" block-mark"&gt;&lt;SPAN class="sec-keyword"&gt;PROC&lt;/SPAN&gt; &lt;SPAN class="sec-keyword"&gt;CONTENTS&lt;/SPAN&gt; &lt;SPAN class="keyword"&gt;DATA&lt;/SPAN&gt;&lt;SPAN class="sep"&gt;=&lt;/SPAN&gt;&lt;SPAN class="text"&gt; HypImpt.IowaResidents &lt;/SPAN&gt;&lt;SPAN class="keyword"&gt;order&lt;/SPAN&gt;&lt;SPAN class="sep"&gt;=&lt;/SPAN&gt;&lt;SPAN class="text"&gt;varnum&lt;/SPAN&gt;&lt;SPAN class="sep"&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN class="sec-keyword"&gt;RUN&lt;/SPAN&gt;&lt;SPAN class="sep"&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=" block-mark"&gt;&lt;SPAN class="sec-keyword"&gt;PROC&lt;/SPAN&gt; &lt;SPAN class="sec-keyword"&gt;PRINT&lt;/SPAN&gt; &lt;SPAN class="keyword"&gt;DATA&lt;/SPAN&gt; &lt;SPAN class="sep"&gt;=&lt;/SPAN&gt;&lt;SPAN class="text"&gt; HypImpt.IowaResidents&lt;/SPAN&gt;&lt;SPAN class="sep"&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN class="sec-keyword"&gt;RUN&lt;/SPAN&gt;&lt;SPAN class="sep"&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Sun, 26 Sep 2021 06:57:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unable-to-format-birth-date-please-help-Only-one-digit-per/m-p/770462#M244443</guid>
      <dc:creator>SilverSkyler</dc:creator>
      <dc:date>2021-09-26T06:57:20Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to format birth date please help. Only one digit per observation for the BirthDt variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unable-to-format-birth-date-please-help-Only-one-digit-per/m-p/770463#M244444</link>
      <description>&lt;P&gt;Thank you for your help.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 26 Sep 2021 06:58:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unable-to-format-birth-date-please-help-Only-one-digit-per/m-p/770463#M244444</guid>
      <dc:creator>SilverSkyler</dc:creator>
      <dc:date>2021-09-26T06:58:24Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to format birth date please help. Only one digit per observation for the BirthDt variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unable-to-format-birth-date-please-help-Only-one-digit-per/m-p/770464#M244445</link>
      <description>&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Sun, 26 Sep 2021 06:58:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unable-to-format-birth-date-please-help-Only-one-digit-per/m-p/770464#M244445</guid>
      <dc:creator>SilverSkyler</dc:creator>
      <dc:date>2021-09-26T06:58:45Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to format birth date please help. Only one digit per observation for the BirthDt variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unable-to-format-birth-date-please-help-Only-one-digit-per/m-p/770469#M244448</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/400284"&gt;@SilverSkyler&lt;/a&gt;&amp;nbsp;I guess your answer means "problem solved". If so then please mark the answer that helped you most as solution. Also: I really would add TRUNCOVER to your infile statement. With the default being FLOWOVER most likely undesired things would happen should there ever be columns missing in a line of your source data.&lt;/P&gt;</description>
      <pubDate>Sun, 26 Sep 2021 08:13:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unable-to-format-birth-date-please-help-Only-one-digit-per/m-p/770469#M244448</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2021-09-26T08:13:50Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to format birth date please help. Only one digit per observation for the BirthDt variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unable-to-format-birth-date-please-help-Only-one-digit-per/m-p/770504#M244464</link>
      <description>&lt;P&gt;Add the TRUNCOVER option to your INFILE statement.&amp;nbsp; This is critical if any line is missing one or more values.&amp;nbsp; But it is doubly critical with your program because you forgot the colon modifier in front of the last informat in your INPUT statement.&amp;nbsp; So if the text in the data uses single digits for month or day then there will not be 10 characters left on the line for the INPUT statement to read.&amp;nbsp; With the default FLOWOVER setting it will jump to the next line. With usually unwanted MISSOVER option it will set those short values to MISSING (as the name implies).&amp;nbsp; With TRUNCOVER the short values are used so date strings with single digit month or day values will be interpreted properly.&lt;/P&gt;
&lt;P&gt;Also ZIPCODE values are NOT numbers.&amp;nbsp; What if some of the records have ZIP+4 values? What if some are from countries where postal codes include letters?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;INFILE "&amp;amp;CourseRoot/Hypertension Study/Data/1_Source/IowaResidents.csv" DSD truncover;
INPUT
 SSN :$11.
 Initials :$4.
 City :$20.
 State :$4.
 ZipCd :$10.
 Sex :$6.
 Ethnicity :$12.
 Race :$5.
 BirthDt :MMDDYY10.
;
FORMAT BirthDt WORDDATE.;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 26 Sep 2021 15:01:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unable-to-format-birth-date-please-help-Only-one-digit-per/m-p/770504#M244464</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-09-26T15:01:57Z</dc:date>
    </item>
    <item>
      <title>I may have been missing a period in my format statement. Also I needed to fix my pathway, I believe.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unable-to-format-birth-date-please-help-Only-one-digit-per/m-p/770529#M244468</link>
      <description>&lt;P&gt;It is fixed now. Thanks all for your assistance.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;%LET CourseRoot = /home/u59445223/BIOS 6680;&lt;/P&gt;&lt;P&gt;LIBNAME HypImpt "&amp;amp;CourseRoot/Hypertension Study/Data/2_Import";&lt;BR /&gt;&lt;BR /&gt;DATA HypImpt.IowaResidents;&lt;BR /&gt;INFILE "&amp;amp;CourseRoot/Hypertension Study/Data/1_Source/IowaResidents.csv" DSD;&lt;BR /&gt;INPUT SSN :$11.&lt;BR /&gt;Initials :$4.&lt;BR /&gt;City :$20.&lt;BR /&gt;State :$4.&lt;BR /&gt;ZipCd&lt;BR /&gt;Sex :$6.&lt;BR /&gt;Ethnicity :$12.&lt;BR /&gt;Race :$5.&lt;BR /&gt;BirthDt MMDDYY10.;&lt;BR /&gt;FORMAT BirthDt MMDDYY10.;&lt;BR /&gt;RUN;&lt;BR /&gt;&lt;BR /&gt;PROC CONTENTS DATA= HypImpt.IowaResidents order=varnum;&lt;BR /&gt;RUN;&lt;/P&gt;</description>
      <pubDate>Sun, 26 Sep 2021 17:56:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unable-to-format-birth-date-please-help-Only-one-digit-per/m-p/770529#M244468</guid>
      <dc:creator>SilverSkyler</dc:creator>
      <dc:date>2021-09-26T17:56:59Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to format birth date please help. Only one digit per observation for the BirthDt variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unable-to-format-birth-date-please-help-Only-one-digit-per/m-p/770535#M244470</link>
      <description>&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Sun, 26 Sep 2021 19:13:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unable-to-format-birth-date-please-help-Only-one-digit-per/m-p/770535#M244470</guid>
      <dc:creator>SilverSkyler</dc:creator>
      <dc:date>2021-09-26T19:13:19Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to format birth date please help. Only one digit per observation for the BirthDt variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unable-to-format-birth-date-please-help-Only-one-digit-per/m-p/770549#M244477</link>
      <description>&lt;P&gt;Hi Patrick:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm a newb here. This is literally my first time posting in this community forum. I do not know how to pin answers or responses. However, I am very grateful for all the help given. I will try TRUNCOVER. Thanks.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 26 Sep 2021 22:57:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unable-to-format-birth-date-please-help-Only-one-digit-per/m-p/770549#M244477</guid>
      <dc:creator>SilverSkyler</dc:creator>
      <dc:date>2021-09-26T22:57:29Z</dc:date>
    </item>
  </channel>
</rss>

