<?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: Using @ in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Using/m-p/571955#M161379</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159549"&gt;@Ronein&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;What is the reason and meaning of using&amp;nbsp;@ symbol?&lt;/P&gt;
&lt;P&gt;I see that:&lt;/P&gt;
&lt;P&gt;date1 is in location1-6&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Wrong. Position the cursor under the beginning of date1, and the status line of the Enhanced Editor will tell you that you are in column 6.&lt;/P&gt;
&lt;P&gt;Datalines ALWAYS start at position 1, not at the indentation deliberately selected by the programmer.&lt;/P&gt;
&lt;P&gt;Hint:&amp;nbsp;&lt;STRONG&gt;NEVER&lt;/STRONG&gt; indent datalines.&lt;/P&gt;</description>
    <pubDate>Tue, 09 Jul 2019 05:31:47 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2019-07-09T05:31:47Z</dc:date>
    <item>
      <title>Using @</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Using/m-p/571953#M161377</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;What is the reason and meaning of using&amp;nbsp;@ symbol?&lt;/P&gt;
&lt;P&gt;I see that:&lt;/P&gt;
&lt;P&gt;date1 is in location1-6&amp;nbsp;&lt;/P&gt;
&lt;P&gt;date2 is i location8-15&lt;/P&gt;
&lt;P&gt;date3 is i location17-26&lt;/P&gt;
&lt;P&gt;Why do we use&amp;nbsp;@6 &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/83330"&gt;@13&lt;/a&gt;&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/8008"&gt;@22&lt;/a&gt;?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;DATA inputdates1;
     INPUT @6 date1 mmddyy6. @13 date2 mmddyy8. @22 date3 mmddyy10.;
	 FORMAT date1 date9. date2 date9. date3 date9.;
	 DATALINES;
     042708 04-27-08 04 27 2008
	 ;
RUN;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 09 Jul 2019 04:30:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Using/m-p/571953#M161377</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2019-07-09T04:30:18Z</dc:date>
    </item>
    <item>
      <title>Re: Using @</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Using/m-p/571954#M161378</link>
      <description>&lt;P&gt;Read up on formatted input with the INPUT statement:&amp;nbsp;&lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.3&amp;amp;docsetId=lestmtsref&amp;amp;docsetTarget=p0f9yk6pd4znukn1rlw6hzkg1url.htm&amp;amp;locale=en" target="_blank"&gt;https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.3&amp;amp;docsetId=lestmtsref&amp;amp;docsetTarget=p0f9yk6pd4znukn1rlw6hzkg1url.htm&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bookmark:&amp;nbsp;&lt;A href="https://documentation.sas.com" target="_blank"&gt;https://documentation.sas.com&lt;/A&gt; and start exploring for yourself. You will find answers faster that way.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jul 2019 04:48:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Using/m-p/571954#M161378</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2019-07-09T04:48:34Z</dc:date>
    </item>
    <item>
      <title>Re: Using @</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Using/m-p/571955#M161379</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159549"&gt;@Ronein&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;What is the reason and meaning of using&amp;nbsp;@ symbol?&lt;/P&gt;
&lt;P&gt;I see that:&lt;/P&gt;
&lt;P&gt;date1 is in location1-6&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Wrong. Position the cursor under the beginning of date1, and the status line of the Enhanced Editor will tell you that you are in column 6.&lt;/P&gt;
&lt;P&gt;Datalines ALWAYS start at position 1, not at the indentation deliberately selected by the programmer.&lt;/P&gt;
&lt;P&gt;Hint:&amp;nbsp;&lt;STRONG&gt;NEVER&lt;/STRONG&gt; indent datalines.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jul 2019 05:31:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Using/m-p/571955#M161379</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-07-09T05:31:47Z</dc:date>
    </item>
  </channel>
</rss>

