<?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 List iput query in Programming 1 and 2</title>
    <link>https://communities.sas.com/t5/Programming-1-and-2/List-iput-query/m-p/765090#M932</link>
    <description>&lt;P&gt;I am fairly new to SAS.Can anyone help me to read this data.&lt;/P&gt;&lt;P&gt;EVANS DONNY 112 29,996.63&lt;BR /&gt;HELMS LISA 105 18,567.23&lt;BR /&gt;HIGGINS JOHN 111 25,309.00&lt;BR /&gt;LARSON AMY 113 32,696.78&lt;BR /&gt;MOORE MARY 112 28,945.89&lt;BR /&gt;POWELL JASON 103 35,099.50&lt;BR /&gt;RILEY JUDY 111 25,309.00&lt;BR /&gt;RYAN NEAL 112 28,180.00&lt;BR /&gt;WILSON HENRY 113 31,875.46&lt;BR /&gt;WOODS CHIP 105 17,098.71&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There should be three variables as 'Name' 'ID' and 'Salary'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
    <pubDate>Tue, 31 Aug 2021 15:41:05 GMT</pubDate>
    <dc:creator>anirghy</dc:creator>
    <dc:date>2021-08-31T15:41:05Z</dc:date>
    <item>
      <title>List iput query</title>
      <link>https://communities.sas.com/t5/Programming-1-and-2/List-iput-query/m-p/765090#M932</link>
      <description>&lt;P&gt;I am fairly new to SAS.Can anyone help me to read this data.&lt;/P&gt;&lt;P&gt;EVANS DONNY 112 29,996.63&lt;BR /&gt;HELMS LISA 105 18,567.23&lt;BR /&gt;HIGGINS JOHN 111 25,309.00&lt;BR /&gt;LARSON AMY 113 32,696.78&lt;BR /&gt;MOORE MARY 112 28,945.89&lt;BR /&gt;POWELL JASON 103 35,099.50&lt;BR /&gt;RILEY JUDY 111 25,309.00&lt;BR /&gt;RYAN NEAL 112 28,180.00&lt;BR /&gt;WILSON HENRY 113 31,875.46&lt;BR /&gt;WOODS CHIP 105 17,098.71&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There should be three variables as 'Name' 'ID' and 'Salary'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Tue, 31 Aug 2021 15:41:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Programming-1-and-2/List-iput-query/m-p/765090#M932</guid>
      <dc:creator>anirghy</dc:creator>
      <dc:date>2021-08-31T15:41:05Z</dc:date>
    </item>
    <item>
      <title>Re: List iput query</title>
      <link>https://communities.sas.com/t5/Programming-1-and-2/List-iput-query/m-p/765119#M934</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I like to use a delimiter, but you can also do without (little code changes are needed then).&lt;/P&gt;
&lt;P&gt;You can also use the 'datalines' keyword instead of 'cards'.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
LENGTH NAME $ 12 ID $ 3 Salary 8; 
infile cards delimiter='|';
format Salary comma10.2; 
input Name $ ID $ Salary :comma10.;
Name=strip(Name);
cards;
EVANS DONNY |112|29,996.63
HELMS LISA  |105|18,567.23
HIGGINS JOHN|111|25,309.00
LARSON AMY  |113|32,696.78
MOORE MARY  |112|28,945.89
POWELL JASON|103|35,099.50
RILEY JUDY  |111|25,309.00
RYAN NEAL   |112|28,180.00
WILSON HENRY|113|31,875.46
WOODS CHIP  |105|17,098.71
;
run;
/* end of program */&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Cheers,&lt;BR /&gt;Koen&lt;/P&gt;</description>
      <pubDate>Tue, 31 Aug 2021 17:26:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Programming-1-and-2/List-iput-query/m-p/765119#M934</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2021-08-31T17:26:23Z</dc:date>
    </item>
  </channel>
</rss>

