<?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 Query regarding data in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Query-regarding-data/m-p/64060#M18197</link>
    <description>Hi all,&lt;BR /&gt;
&lt;BR /&gt;
i have one query regarding my data...&lt;BR /&gt;
&lt;BR /&gt;
ex:&lt;BR /&gt;
data x;&lt;BR /&gt;
input name $ num sex $;&lt;BR /&gt;
cards;&lt;BR /&gt;
shailesh 27 m&lt;BR /&gt;
sudhir 25 m&lt;BR /&gt;
;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;B&gt;&lt;BR /&gt;
and my output should be&lt;/B&gt;&lt;BR /&gt;
&lt;BR /&gt;
shailesh&lt;BR /&gt;
27&lt;BR /&gt;
m&lt;BR /&gt;
sudhir &lt;BR /&gt;
25 &lt;BR /&gt;
m&lt;BR /&gt;
what is the syntax for getting this output&lt;BR /&gt;
please let me know if u find any soln&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
kumar</description>
    <pubDate>Wed, 03 Dec 2008 10:40:48 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2008-12-03T10:40:48Z</dc:date>
    <item>
      <title>Query regarding data</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Query-regarding-data/m-p/64060#M18197</link>
      <description>Hi all,&lt;BR /&gt;
&lt;BR /&gt;
i have one query regarding my data...&lt;BR /&gt;
&lt;BR /&gt;
ex:&lt;BR /&gt;
data x;&lt;BR /&gt;
input name $ num sex $;&lt;BR /&gt;
cards;&lt;BR /&gt;
shailesh 27 m&lt;BR /&gt;
sudhir 25 m&lt;BR /&gt;
;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;B&gt;&lt;BR /&gt;
and my output should be&lt;/B&gt;&lt;BR /&gt;
&lt;BR /&gt;
shailesh&lt;BR /&gt;
27&lt;BR /&gt;
m&lt;BR /&gt;
sudhir &lt;BR /&gt;
25 &lt;BR /&gt;
m&lt;BR /&gt;
what is the syntax for getting this output&lt;BR /&gt;
please let me know if u find any soln&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
kumar</description>
      <pubDate>Wed, 03 Dec 2008 10:40:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Query-regarding-data/m-p/64060#M18197</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-12-03T10:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: Query regarding data</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Query-regarding-data/m-p/64061#M18198</link>
      <description>It's nt whether you want the result directly into a report or stored in a table. If you store it in a table you can always print with PROC PRINT or SQL later:&lt;BR /&gt;
&lt;BR /&gt;
data x;&lt;BR /&gt;
	input name $ num sex $;&lt;BR /&gt;
	length common $10;&lt;BR /&gt;
	common = name; output;&lt;BR /&gt;
	common = put(num,2.); output;&lt;BR /&gt;
	common = sex; output;&lt;BR /&gt;
	keep common;&lt;BR /&gt;
	cards;&lt;BR /&gt;
shailesh 27 m&lt;BR /&gt;
sudhir 25 m&lt;BR /&gt;
;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
/Linus</description>
      <pubDate>Wed, 03 Dec 2008 11:54:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Query-regarding-data/m-p/64061#M18198</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2008-12-03T11:54:56Z</dc:date>
    </item>
  </channel>
</rss>

