<?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: How to extract data in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/278342#M58873</link>
    <description>&lt;PRE&gt;
data have;
input x $80.;
length Bacode $ 20;
n+1;
pid=prxparse('/atmbarcode:"\w+/i');
s=1;
e=length(x);
call prxnext(pid,s,e,x,p,l);
do while(p&amp;gt;0);
 Bacode=substr(x,p,l);
 output;
 call prxnext(pid,s,e,x,p,l);
end;
keep n x Bacode ;
cards;
atmbarcode:"FE235. atmbarcode:"Yu23
;
run;
proc transpose data=have out=want(drop=_name_) prefix=Bacode;
by n x;
var Bacode;
run;

&lt;/PRE&gt;</description>
    <pubDate>Sat, 18 Jun 2016 07:06:20 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2016-06-18T07:06:20Z</dc:date>
    <item>
      <title>How to extract data</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/277040#M58709</link>
      <description>Hi I have a table that has the data in a row...it looks like this&lt;BR /&gt;Tracking&lt;BR /&gt;"Barcode"." SA0258220607"&lt;BR /&gt;&lt;BR /&gt;I need to extract SA0258220607&lt;BR /&gt;&lt;BR /&gt;the issue is that the data I need is in rows some times there might be 5 entries in one row or 20 entries&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;"Barcode"." SA0258220607"&lt;BR /&gt;"Barcode"." PA0258220707"&lt;BR /&gt;"Barcode"." Sk0258220607"&lt;BR /&gt;"Barcode"." SSY025822077"&lt;BR /&gt;I would like to convert the rows into one col....than extract just what I need was thinking of doing a proc transpose&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 13 Jun 2016 20:11:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/277040#M58709</guid>
      <dc:creator>Beto16</dc:creator>
      <dc:date>2016-06-13T20:11:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract data</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/277048#M58710</link>
      <description>&lt;P&gt;If you would like to convert each row into multiple rows, that is up to you.&amp;nbsp; Here's a solution that reads multiple entries from the same row:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;data want;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;infile rawdata;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;input @;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;length SA_string $ 20;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;do i=1 to countw(_infile_, '.');&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp; SA_string = scan(_infile_, 3*i, '"');&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp; output;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;end;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;run;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There might be some tweaking needed, since you haven't shown what the data looks like when there are multiple entries per row.&amp;nbsp; Who knows?&amp;nbsp; Maybe my imagination is correct.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jun 2016 21:03:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/277048#M58710</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2016-06-13T21:03:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract data</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/277077#M58721</link>
      <description>Thanks for response. I have a question can I use scan to look only for a specific word like Barcode instead of "? ... The entries can vary per row&lt;BR /&gt;Id. Bacode1 Was1 Bacode2 was2 Bacode3 was3&lt;BR /&gt;Qw. Bar Az011. ABC. BarAz345. Wer.BarAz056.&lt;BR /&gt;Tr. BrAz078. Dfg. . Braz078. Tyr.&lt;BR /&gt;Ee. Br Az089. Rty&lt;BR /&gt;I would like to see&lt;BR /&gt;&lt;BR /&gt;Id Barcode1 Barcode2. Barcode3&lt;BR /&gt;Qw Az011. Az345. Az056.&lt;BR /&gt;Tr. Az078. Az078.&lt;BR /&gt;Ee. Az089.</description>
      <pubDate>Tue, 14 Jun 2016 00:58:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/277077#M58721</guid>
      <dc:creator>Beto16</dc:creator>
      <dc:date>2016-06-14T00:58:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract data</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/277094#M58724</link>
      <description>&lt;P&gt;Are your records always in pairs, or you're always using the second one?&amp;nbsp;What's your delimiter in the second row, it doesn't look like there's any.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You need to explain all the rules.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jun 2016 02:38:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/277094#M58724</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-06-14T02:38:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract data</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/277101#M58725</link>
      <description>&lt;P&gt;Does the Barcode always like AZ98989 ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input x $80.;
length Bacode $ 20;
n+1;
pid=prxparse('/az\d+/i');
s=1;
e=length(x);
call prxnext(pid,s,e,x,p,l);
do while(p&amp;gt;0);
 Bacode=substr(x,p,l);
 output;
 call prxnext(pid,s,e,x,p,l);
end;
keep n x Bacode ;
cards;
Qw. Bar Az011. ABC. BarAz345. Wer.BarAz056.
Tr. BrAz078. Dfg. . Braz078. Tyr.
Ee. Br Az089. Rty
;
run;
proc transpose data=have out=want(drop=_name_) prefix=Bacode;
by n x;
var Bacode;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 14 Jun 2016 03:27:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/277101#M58725</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-06-14T03:27:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract data</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/277239#M58735</link>
      <description>&lt;P&gt;Here's the documentation that shows what the SCAN function can do:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/syntaxidx/68719/HTML/default/index.htm#/documentation/cdl//en/lefunctionsref/67960/HTML/default/p0jshdjy2z9zdzn1h7k90u99lyq6.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/syntaxidx/68719/HTML/default/index.htm#/documentation/cdl//en/lefunctionsref/67960/HTML/default/p0jshdjy2z9zdzn1h7k90u99lyq6.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jun 2016 14:07:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/277239#M58735</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2016-06-14T14:07:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract data</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/278052#M58816</link>
      <description>Hi Ksharp&lt;BR /&gt;Thank you for response I seem to have gotten to work with your code... but it's bringing every thing from the col down an not horizontal by row ...&lt;BR /&gt;I have a table that has 100 col that start with Barcode barvode1 and Barcode3 .... in your code I was able to get data when I refer the col name Barcode3 for example ..an only that output ...how do I refer the other columns ? Here bit of information in the col from the data that I'm looking for they all start with atmbarcode. An not all 100 col have the data I need those start with bagbarcode...&lt;BR /&gt;In a nut she'll I need to look at 100 col an were the col name is Barcode does it have and entry of atmbarcode in the beginning. ...thanks for your help much appreciated</description>
      <pubDate>Thu, 16 Jun 2016 22:32:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/278052#M58816</guid>
      <dc:creator>Beto16</dc:creator>
      <dc:date>2016-06-16T22:32:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract data</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/278056#M58817</link>
      <description>&lt;P&gt;"&lt;SPAN&gt;I have a table that has 100 col that start with Barcode barvode1 and Barcode3 .... in your code I was able to get data when I refer the col name Barcode3 for example .."&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If you have multiple variables, you can combine them all together into one variable , like the following code:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token procnames"&gt;data&lt;/SPAN&gt; have&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token keyword"&gt;input&lt;/SPAN&gt; x &lt;SPAN class="token punctuation"&gt;$&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;80&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token function"&gt;length&lt;/SPAN&gt; Bacode &lt;SPAN class="token punctuation"&gt;$&lt;/SPAN&gt; &lt;SPAN class="token number"&gt;2000&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;BR /&gt;Bacode=catx(' ',of Bacode1-Bacode100);&lt;BR /&gt;...........&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jun 2016 00:44:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/278056#M58817</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-06-17T00:44:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract data</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/278298#M58864</link>
      <description>&lt;BR /&gt;Thanks for assistance it's bringing in everything for example&lt;BR /&gt;Atm1. Atm Atm3. Atm4.....&lt;BR /&gt;atmbarcode:"FE235. Row Ash atmbarcode:"Yu23&lt;BR /&gt;&lt;BR /&gt;what I want output&lt;BR /&gt;Atm1. Atm4&lt;BR /&gt;atmbarcode:"FE235. atmbarcode:"Yu23&lt;BR /&gt;&lt;BR /&gt;my script is&lt;BR /&gt;Data test;&lt;BR /&gt;Set test1;&lt;BR /&gt;Length atm $20.;&lt;BR /&gt;N+1&lt;BR /&gt;Atm=catx (' ',of atm1-atm100);&lt;BR /&gt;Pid=prxparse ('/atmbarcode:\d+/i');&lt;BR /&gt;S=1;&lt;BR /&gt;E=length (x);&lt;BR /&gt;Call prxnext (pid,s,e,x,p,l);&lt;BR /&gt;Do while (p&amp;gt;0);&lt;BR /&gt;Atmbarcode =substr (x,p,l);&lt;BR /&gt;End;&lt;BR /&gt;Keep n x atm1-atm600;&lt;BR /&gt;Run;&lt;BR /&gt;&lt;BR /&gt;I thought the pid=prxparse ('/atmbarcode :\d+/i');&lt;BR /&gt;I thought that would filter for only that atmbarcode an nothing else?...I know what n means what is x it comes in blank ...could I get shipid into what x is&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 17 Jun 2016 19:23:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/278298#M58864</guid>
      <dc:creator>Beto16</dc:creator>
      <dc:date>2016-06-17T19:23:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract data</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/278342#M58873</link>
      <description>&lt;PRE&gt;
data have;
input x $80.;
length Bacode $ 20;
n+1;
pid=prxparse('/atmbarcode:"\w+/i');
s=1;
e=length(x);
call prxnext(pid,s,e,x,p,l);
do while(p&amp;gt;0);
 Bacode=substr(x,p,l);
 output;
 call prxnext(pid,s,e,x,p,l);
end;
keep n x Bacode ;
cards;
atmbarcode:"FE235. atmbarcode:"Yu23
;
run;
proc transpose data=have out=want(drop=_name_) prefix=Bacode;
by n x;
var Bacode;
run;

&lt;/PRE&gt;</description>
      <pubDate>Sat, 18 Jun 2016 07:06:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/278342#M58873</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-06-18T07:06:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract data</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/279458#M58986</link>
      <description>Hi Ksharp I added the code you provided an it brought back zeros... I thought it would bring back at least 2 since thst is how many is in the cards........am I overlooking something? Thank you again</description>
      <pubDate>Wed, 22 Jun 2016 18:10:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/279458#M58986</guid>
      <dc:creator>Beto16</dc:creator>
      <dc:date>2016-06-22T18:10:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract data</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/279474#M58988</link>
      <description>Here is a example of my raw data I have over 500 columns that start with barcode1 thru barcode 500 ... not all columns have what I'm looking only the rows that have atmbarcode:FE235 that is just example there are other id numbers but they all start with atmbarcode:&lt;BR /&gt;Barcode1. Barcode2. Barcode3&lt;BR /&gt;Atmbarcode:TU35. Row#% atmbarcode:WE45&lt;BR /&gt;&lt;BR /&gt;Here is out put&lt;BR /&gt;Barcode&lt;BR /&gt;TU35&lt;BR /&gt;WE45&lt;BR /&gt;&lt;BR /&gt;THANK YOU</description>
      <pubDate>Wed, 22 Jun 2016 18:22:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/279474#M58988</guid>
      <dc:creator>Beto16</dc:creator>
      <dc:date>2016-06-22T18:22:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract data</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/279523#M58989</link>
      <description>.my log&lt;BR /&gt;Numeric values have been converted to character values at the places given by (line):( column).&lt;BR /&gt;20658:10 20659:22 20661:15. 20663:22&lt;BR /&gt;Note there were 136 observation read from data set work.test. the data set want has 0 observation and 3 variables ....hope this helps as well</description>
      <pubDate>Wed, 22 Jun 2016 18:45:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/279523#M58989</guid>
      <dc:creator>Beto16</dc:creator>
      <dc:date>2016-06-22T18:45:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract data</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/279590#M58992</link>
      <description>&lt;P&gt;There are too many pattern you to consider about . Without see all your data , it is hard to write corrrect PRX .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input x $80.;
length Bacode $ 20;
n+1;
pid=prxparse('/atmbarcode:\W*\w+/i');
s=1;
e=length(x);
call prxnext(pid,s,e,x,p,l);
do while(p&amp;gt;0);
 Bacode=substr(x,p,l);
 output;
 call prxnext(pid,s,e,x,p,l);
end;
keep n x Bacode ;
cards;
atmbarcode:"FE235. atmbarcode:"Yu23
Atmbarcode:TU35. Row#% atmbarcode:WE45
;
run;
proc transpose data=have out=want(drop=_name_) prefix=Bacode;
by n x;
var Bacode;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 23 Jun 2016 00:56:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/279590#M58992</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-06-23T00:56:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract data</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/279615#M58997</link>
      <description>Hi Ksharp it worked how do i refer a table the name of table is test... an the columns names is Bacode1 thru Bacode500. How do I make these columns appear in a single col X. So that I can do substr to bacode? Thank you</description>
      <pubDate>Thu, 23 Jun 2016 02:32:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/279615#M58997</guid>
      <dc:creator>Beto16</dc:creator>
      <dc:date>2016-06-23T02:32:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract data</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/279620#M58999</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test;
infile cards truncover;
input (Bacode1-Bacode3) (: $40.);
cards;
atmbarcode:"FE235. atmbarcode:"Yu23
Atmbarcode:TU35. Row#% atmbarcode:WE45
;
run;

data have;
 set test;
length x $ 32767;
x=catx(' ',of Bacode1-Bacode3);
n+1;
pid=prxparse('/atmbarcode:\W*\w+/i');
s=1;
e=length(x);
call prxnext(pid,s,e,x,p,l);
do while(p&amp;gt;0);
 Bacode=substr(x,p,l);
 output;
 call prxnext(pid,s,e,x,p,l);
end;
keep n x Bacode ;

proc transpose data=have out=want(drop=_name_) prefix=Bacode;
by n x;
var Bacode;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 23 Jun 2016 02:41:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/279620#M58999</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-06-23T02:41:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract data</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/279625#M59001</link>
      <description>Hi Ksharp I copy your code an refer Test table an prxparse atmbarcode: an did the the catx to include only the columns I want to select even though it'sbe 600 ...an it comes back when I use cards it works beautiful. ..when I try to refer table it fail. ..i really appreciate your help</description>
      <pubDate>Thu, 23 Jun 2016 03:13:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/279625#M59001</guid>
      <dc:creator>Beto16</dc:creator>
      <dc:date>2016-06-23T03:13:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract data</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/279626#M59002</link>
      <description>Do you see anything I might be missing?</description>
      <pubDate>Thu, 23 Jun 2016 03:13:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/279626#M59002</guid>
      <dc:creator>Beto16</dc:creator>
      <dc:date>2016-06-23T03:13:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract data</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/279636#M59004</link>
      <description>&lt;P&gt;Your Error Log information ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Post a TEXT/CSV file contains your TEST data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Run &amp;nbsp; &amp;nbsp;PROC CONTENTS DATA=TEST;RUN; &amp;nbsp; and post the result.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jun 2016 03:40:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/279636#M59004</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-06-23T03:40:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract data</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/279641#M59005</link>
      <description>The sas system&lt;BR /&gt;The contents procedure&lt;BR /&gt;Data set name work.test. observation 136&lt;BR /&gt;Member name Data. Variables. 255&lt;BR /&gt;engine. V9. Indexes. 0&lt;BR /&gt;Created.06/22/16. 22:45:5 Observations length 5456&lt;BR /&gt;last modified 06/22/16 22:45:5. Deleted observation 0&lt;BR /&gt;Protection. Compress No&lt;BR /&gt;Data set type. Sorted no&lt;BR /&gt;Label.&lt;BR /&gt;Data representation win_32&lt;BR /&gt;Encoding latinwestern&lt;BR /&gt;&lt;BR /&gt;engine /host dependant information&lt;BR /&gt;&lt;BR /&gt;Data set page size. 262144&lt;BR /&gt;Number of data set pages 3&lt;BR /&gt;First data page 1&lt;BR /&gt;Max obs per page 48&lt;BR /&gt;Obs in first data page 42&lt;BR /&gt;Number of data set repair 0&lt;BR /&gt;Extendobs counter. Yes&lt;BR /&gt;Filename test.sas7dat&lt;BR /&gt;Release 9.0401m3&lt;BR /&gt;Host created w32_7pro&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Alphabetical list of variables an attributes&lt;BR /&gt;&lt;BR /&gt;# variable. Type. Len. Format informat label&lt;BR /&gt;3. Atm1. Char. 22. $22. $22. Atm1&lt;BR /&gt;4. Atm2. Char. 25. $25. $25. ATM2&lt;BR /&gt;5. Atm3. Char. 24. $24. , $24. Atm3&lt;BR /&gt;6. Atm4. Char. 19. . $19. $19. Atm4</description>
      <pubDate>Thu, 23 Jun 2016 04:11:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-extract-data/m-p/279641#M59005</guid>
      <dc:creator>Beto16</dc:creator>
      <dc:date>2016-06-23T04:11:25Z</dc:date>
    </item>
  </channel>
</rss>

