<?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: More than one input statements in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/More-than-one-input-statements/m-p/88682#M9241</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The result is easy: Run the code then Proc print;run;&lt;/P&gt;&lt;P&gt;I think if you look at that then the code might make sense.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 29 May 2013 23:09:02 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2013-05-29T23:09:02Z</dc:date>
    <item>
      <title>More than one input statements</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/More-than-one-input-statements/m-p/88681#M9240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;BR /&gt;Could any one explain the follwing program,what will be the result of this program and how we get that(the internal process how it reads the data).&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Times New Roman'; font-size: 12pt;"&gt;data work.TEST;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Times New Roman'; font-size: 12pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; drop City;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Times New Roman'; font-size: 12pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; infile datalines;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Times New Roman'; font-size: 12pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; input&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Times New Roman'; font-size: 12pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @1 Name $14.&amp;nbsp; /&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Times New Roman'; font-size: 12pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @1 Address $14. /&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Times New Roman'; font-size: 12pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @1 City $12. ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Times New Roman'; font-size: 12pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if City="New York" then input @1 State $2.;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Times New Roman'; font-size: 12pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else input;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Times New Roman'; font-size: 12pt;"&gt; datalines;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Times New Roman'; font-size: 12pt;"&gt;Joe Conley&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Times New Roman'; font-size: 12pt;"&gt;123 Main St&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Times New Roman'; font-size: 12pt;"&gt;Janesville&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Times New Roman'; font-size: 12pt;"&gt;WI&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Times New Roman'; font-size: 12pt;"&gt;Jane Ngyuen&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Times New Roman'; font-size: 12pt;"&gt;555 Alpha Ave&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Times New Roman'; font-size: 12pt;"&gt;New York&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Times New Roman'; font-size: 12pt;"&gt;NY&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Times New Roman'; font-size: 12pt;"&gt;Jennifer Jason&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Times New Roman'; font-size: 12pt;"&gt;666 Mt Diablo&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Times New Roman'; font-size: 12pt;"&gt;Eureka&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Times New Roman'; font-size: 12pt;"&gt;CA&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Times New Roman'; font-size: 12pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 May 2013 06:40:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/More-than-one-input-statements/m-p/88681#M9240</guid>
      <dc:creator>rawindar</dc:creator>
      <dc:date>2013-05-29T06:40:35Z</dc:date>
    </item>
    <item>
      <title>Re: More than one input statements</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/More-than-one-input-statements/m-p/88682#M9241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The result is easy: Run the code then Proc print;run;&lt;/P&gt;&lt;P&gt;I think if you look at that then the code might make sense.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 May 2013 23:09:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/More-than-one-input-statements/m-p/88682#M9241</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2013-05-29T23:09:02Z</dc:date>
    </item>
    <item>
      <title>Re: More than one input statements</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/More-than-one-input-statements/m-p/88683#M9242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You didn't get me i think,I know the answer,i just want to know how it reads data the way of execution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 May 2013 11:40:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/More-than-one-input-statements/m-p/88683#M9242</guid>
      <dc:creator>rawindar</dc:creator>
      <dc:date>2013-05-30T11:40:43Z</dc:date>
    </item>
    <item>
      <title>Re: More than one input statements</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/More-than-one-input-statements/m-p/88684#M9243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is an example of using &lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Line-Pointer Control&lt;/STRONG&gt;&lt;/SPAN&gt; to read multiple records like your code, to create a Single Observation containing variables Name , Address, City , State ideally. Since you requested a drop for city , you will have only three variables - Name , Address and State &lt;/P&gt;&lt;P&gt;This / reads only one dataline field as a new record, each time, into the input buffer.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;So it reads Name first then reads next Address record still considered as the same observation followed by City and then State.&lt;/P&gt;&lt;P&gt;Now my question is do you have spaces before and after each record in the dataline? Whatever be the case, I have illustarted an example showing the possible cases.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I assume Case 1 is what you are looking for.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Case 1&lt;/STRONG&gt;: Without Spaces (recommended)&lt;/SPAN&gt;&lt;BR /&gt;It will read Name(Joe Coneley) first. Since there is a /&amp;nbsp; after name ,it reads next record Address(123 Main St). The / after Address will read the next record City (Janesville). Since there is a drop for City , it will dropped in the dataset. Since you have another input statement in the IF-THEN condition , it is same as a / and will read State. it will not give a value for State since the City requested is New York . But your first observation has City = Janesville. Hence no value for State. &lt;BR /&gt;Your second observation has City=New York , hence State has a value of NY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="WIDTH: 569px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl76" colspan="4" height="22" width="250"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Without spaces and drop City&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD class="xl77" width="6"&gt; &lt;/TD&gt;&lt;TD class="xl80" colspan="5" style="border-left: medium none;" width="313"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;Without spaces and keep City&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl73" height="21" width="31"&gt;Obs&lt;/TD&gt;&lt;TD class="xl63" width="89"&gt;Name&lt;/TD&gt;&lt;TD class="xl63" width="90"&gt;Address&lt;/TD&gt;&lt;TD class="xl74" width="40"&gt;State&lt;/TD&gt;&lt;TD class="xl78"&gt; &lt;/TD&gt;&lt;TD class="xl64" style="border-top: medium none;" width="31"&gt;Obs&lt;/TD&gt;&lt;TD class="xl65" style="border-top: medium none;" width="89"&gt;Name&lt;/TD&gt;&lt;TD class="xl65" style="border-top: medium none;" width="90"&gt;Address&lt;/TD&gt;&lt;TD class="xl65" style="border-top: medium none;" width="63"&gt;City&lt;/TD&gt;&lt;TD class="xl66" style="border-top: medium none;" width="40"&gt;State&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl68" height="21"&gt;1&lt;/TD&gt;&lt;TD class="xl67"&gt;Joe Conley&lt;/TD&gt;&lt;TD class="xl67"&gt;123 Main St&lt;/TD&gt;&lt;TD class="xl69"&gt; &lt;/TD&gt;&lt;TD class="xl78"&gt; &lt;/TD&gt;&lt;TD class="xl68"&gt;1&lt;/TD&gt;&lt;TD class="xl67"&gt;Joe Conley&lt;/TD&gt;&lt;TD class="xl67"&gt;123 Main St&lt;/TD&gt;&lt;TD class="xl67"&gt;Janesville&lt;/TD&gt;&lt;TD class="xl69"&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl68" height="21"&gt;2&lt;/TD&gt;&lt;TD class="xl67"&gt;Jane Ngyuen&lt;/TD&gt;&lt;TD class="xl67"&gt;555 Alpha Ave&lt;/TD&gt;&lt;TD class="xl69"&gt;NY&lt;/TD&gt;&lt;TD class="xl78"&gt; &lt;/TD&gt;&lt;TD class="xl68"&gt;2&lt;/TD&gt;&lt;TD class="xl67"&gt;Jane Ngyuen&lt;/TD&gt;&lt;TD class="xl67"&gt;555 Alpha Ave&lt;/TD&gt;&lt;TD class="xl67"&gt;New York&lt;/TD&gt;&lt;TD class="xl69"&gt;NY&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl70" height="21"&gt;3&lt;/TD&gt;&lt;TD class="xl71"&gt;Jennifer Jason&lt;/TD&gt;&lt;TD class="xl71"&gt;666 Mt Diablo&lt;/TD&gt;&lt;TD class="xl72"&gt; &lt;/TD&gt;&lt;TD class="xl78"&gt; &lt;/TD&gt;&lt;TD class="xl70"&gt;3&lt;/TD&gt;&lt;TD class="xl71"&gt;Jennifer Jason&lt;/TD&gt;&lt;TD class="xl71"&gt;666 Mt Diablo&lt;/TD&gt;&lt;TD class="xl71"&gt;Eureka&lt;/TD&gt;&lt;TD class="xl72"&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Case 2&lt;/STRONG&gt;: With spaces ( not the result you want)&lt;/SPAN&gt;&lt;BR /&gt;It will read first record which is a blank, hence Name is a blank. Since there is a /&amp;nbsp; after name ,it reads next record Address but the records shows value (Joe Coneley). The / after Address will read the next record City which is a blank. Since there is a drop for City , it will dropped in the dataset. Since you have another input statement in the IF-THEN condition , it is same as a / and will read State. it will not give a value for state since the City requested is New York . But your first observation has a blank value for City and does not satisfy the IF condition. Hence no value for State. this gives 1st observation&lt;/P&gt;&lt;P&gt;Follow this order for observation 2 and 3.&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="WIDTH: 569px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl78" colspan="4" height="22" width="250"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; With spaces and drop City&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD class="xl79" width="6"&gt; &lt;/TD&gt;&lt;TD class="xl82" colspan="5" style="border-left: medium none;" width="313"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; With spaces and keep City&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl75" height="21" width="31"&gt;Obs&lt;/TD&gt;&lt;TD class="xl65" width="89"&gt;Name&lt;/TD&gt;&lt;TD class="xl65" width="90"&gt;Address&lt;/TD&gt;&lt;TD class="xl76" width="40"&gt;State&lt;/TD&gt;&lt;TD class="xl80"&gt; &lt;/TD&gt;&lt;TD class="xl66" style="border-top: medium none;" width="31"&gt;Obs&lt;/TD&gt;&lt;TD class="xl67" style="border-top: medium none;" width="89"&gt;Name&lt;/TD&gt;&lt;TD class="xl67" style="border-top: medium none;" width="90"&gt;Address&lt;/TD&gt;&lt;TD class="xl67" style="border-top: medium none;" width="63"&gt;City&lt;/TD&gt;&lt;TD class="xl68" style="border-top: medium none;" width="40"&gt;State&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl70" height="21"&gt;1&lt;/TD&gt;&lt;TD class="xl69"&gt; &lt;/TD&gt;&lt;TD class="xl69"&gt;Joe Conley&lt;/TD&gt;&lt;TD class="xl71"&gt; &lt;/TD&gt;&lt;TD class="xl80"&gt; &lt;/TD&gt;&lt;TD class="xl70"&gt;1&lt;/TD&gt;&lt;TD class="xl69"&gt; &lt;/TD&gt;&lt;TD class="xl69"&gt;Joe Conley&lt;/TD&gt;&lt;TD class="xl69"&gt; &lt;/TD&gt;&lt;TD class="xl71"&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl70" height="21"&gt;2&lt;/TD&gt;&lt;TD class="xl69"&gt; &lt;/TD&gt;&lt;TD class="xl69"&gt;Janesville&lt;/TD&gt;&lt;TD class="xl71"&gt; &lt;/TD&gt;&lt;TD class="xl80"&gt; &lt;/TD&gt;&lt;TD class="xl70"&gt;2&lt;/TD&gt;&lt;TD class="xl69"&gt; &lt;/TD&gt;&lt;TD class="xl69"&gt;Janesville&lt;/TD&gt;&lt;TD class="xl69"&gt; &lt;/TD&gt;&lt;TD class="xl71"&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl70" height="21"&gt;3&lt;/TD&gt;&lt;TD class="xl69"&gt; &lt;/TD&gt;&lt;TD class="xl69"&gt;Jane Ngyuen&lt;/TD&gt;&lt;TD class="xl71"&gt; &lt;/TD&gt;&lt;TD class="xl80"&gt; &lt;/TD&gt;&lt;TD class="xl70"&gt;3&lt;/TD&gt;&lt;TD class="xl69"&gt; &lt;/TD&gt;&lt;TD class="xl69"&gt;Jane Ngyuen&lt;/TD&gt;&lt;TD class="xl69"&gt; &lt;/TD&gt;&lt;TD class="xl71"&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl70" height="21"&gt;4&lt;/TD&gt;&lt;TD class="xl69"&gt; &lt;/TD&gt;&lt;TD class="xl69"&gt;New York&lt;/TD&gt;&lt;TD class="xl71"&gt; &lt;/TD&gt;&lt;TD class="xl80"&gt; &lt;/TD&gt;&lt;TD class="xl70"&gt;4&lt;/TD&gt;&lt;TD class="xl69"&gt; &lt;/TD&gt;&lt;TD class="xl69"&gt;New York&lt;/TD&gt;&lt;TD class="xl69"&gt; &lt;/TD&gt;&lt;TD class="xl71"&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl70" height="21"&gt;5&lt;/TD&gt;&lt;TD class="xl69"&gt; &lt;/TD&gt;&lt;TD class="xl69"&gt;Jennifer Jason&lt;/TD&gt;&lt;TD class="xl71"&gt; &lt;/TD&gt;&lt;TD class="xl80"&gt; &lt;/TD&gt;&lt;TD class="xl70"&gt;5&lt;/TD&gt;&lt;TD class="xl69"&gt; &lt;/TD&gt;&lt;TD class="xl69"&gt;Jennifer Jason&lt;/TD&gt;&lt;TD class="xl69"&gt; &lt;/TD&gt;&lt;TD class="xl71"&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl72" height="20"&gt;6&lt;/TD&gt;&lt;TD class="xl73"&gt; &lt;/TD&gt;&lt;TD class="xl73"&gt;Eureka&lt;/TD&gt;&lt;TD class="xl74"&gt; &lt;/TD&gt;&lt;TD class="xl80"&gt; &lt;/TD&gt;&lt;TD class="xl72"&gt;6&lt;/TD&gt;&lt;TD class="xl73"&gt; &lt;/TD&gt;&lt;TD class="xl73"&gt;Eureka&lt;/TD&gt;&lt;TD class="xl73"&gt; &lt;/TD&gt;&lt;TD class="xl74"&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also refer:&lt;BR /&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/basess/58133/HTML/default/viewer.htm#a002001051.htm"&gt;http://support.sas.com/documentation/cdl/en/basess/58133/HTML/default/viewer.htm#a002001051.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 May 2013 17:41:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/More-than-one-input-statements/m-p/88684#M9243</guid>
      <dc:creator>sas4ml</dc:creator>
      <dc:date>2013-05-30T17:41:18Z</dc:date>
    </item>
    <item>
      <title>Re: More than one input statements</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/More-than-one-input-statements/m-p/88685#M9244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The short answer is:&lt;/P&gt;&lt;P&gt;1) Because of the use of two / symbols in the first INPUT statement it will read in three lines.&lt;/P&gt;&lt;P&gt;2) The fourth line will either be read as the STATE or else it will be ignored.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other notes:&lt;/P&gt;&lt;P&gt;The @1 pointer controls are not needed as by default the pointer will start in column 1.&lt;/P&gt;&lt;P&gt;We do not need to worry about SAS reading past the end of the line when we are using CARDS (or "datalines") because SAS will pad the input to card images (80 column records).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 May 2013 04:42:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/More-than-one-input-statements/m-p/88685#M9244</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2013-05-31T04:42:45Z</dc:date>
    </item>
    <item>
      <title>Re: More than one input statements</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/More-than-one-input-statements/m-p/88686#M9245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Jun 2013 08:56:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/More-than-one-input-statements/m-p/88686#M9245</guid>
      <dc:creator>rawindar</dc:creator>
      <dc:date>2013-06-03T08:56:18Z</dc:date>
    </item>
  </channel>
</rss>

