<?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: Cross Tabulation  of Two variables in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Cross-Tabulation-of-Two-variables/m-p/443978#M282887</link>
    <description>&lt;P&gt;Many thanks ChrisNZ. The codes did help.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was wondering if you can help to append&amp;nbsp; each results in 1 big dataset please?&amp;nbsp; I have attached an example.&lt;/P&gt;&lt;PRE&gt;data HAVE;
  input Y1 Y2 KYPHOSIS;
cards;
28 11.1 100
28 13.3 200
16 16.1 300
16 13.3 400
run;

data _null_;
  set HAVE(keep=Y1) nobs=NOBS;
  do I=1 to NOBS;
    J+1;
    set HAVE(keep=Y2) point=I;
    call execute('data TEMP; set HAVE;');
    call execute(catt('BETA1_BETA2=(Y1&amp;lt;=',Y1,')|(Y2&amp;lt;=',Y2,');'));
    call execute('proc freq data=TEMP order=data noprint;');
    call execute('tables BETA1_BETA2*KYPHOSIS');
    call execute(catt('/out=OUTFREQ',J,'(label="Y1=',Y1,' Y2=',Y2,'") outpct sparse;run;'));
  end;
run;&lt;/PRE&gt;</description>
    <pubDate>Fri, 09 Mar 2018 04:31:02 GMT</pubDate>
    <dc:creator>jeka1212</dc:creator>
    <dc:date>2018-03-09T04:31:02Z</dc:date>
    <item>
      <title>Cross Tabulation  of Two variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Cross-Tabulation-of-Two-variables/m-p/443945#M282885</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need &amp;nbsp;to create a combined binary variable beta1_beta2&amp;nbsp; with y1 and y2 and use the existing binary variable “kyphosis” &amp;nbsp;with proc beta1_beta2&amp;nbsp; *kyphosis.&amp;nbsp; I was wondering if you can advise me how to modify the SAS code below to repeat the process for all pair (y1,y2) in the dataset?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
infile "&amp;amp;sasforum\datasets\wiedat2b.csv" firstobs=2 dsd;
input y1 y2 kyphosis;
run;

DATA have;
set have;

********Creating the first binary variable beta1 with y1=28;
if y1 &amp;lt;= 28 then beta1=0;
else beta1=1; 

**Creating the first binary variable beta2 with y2=13.3;
if y2 &amp;lt;=13.3 then beta2=0;
else beta2=1;

********Creating the first  combined binary variable beta1_beta2 with the pair (y1=28,y2=13.3);

if beta1=1 &amp;amp; beta2=1 then beta1_beta2=1;
if beta1=1 &amp;amp; beta2=0 then beta1_beta2=1;
if beta1=0 &amp;amp; beta2=1 then beta1_beta2=1;
if beta1=0 &amp;amp; beta2=0 then beta1_beta2=0;
run;

proc freq data = have order=data noprint ;
            tables  beta1_beta2*kyphosis / out=FreqCount OUTPCT sparse ;
		*output out=mnocol;
run;

*THEN REPEAT  FOR:  y1=28, y2=11.1, 12.6, ect...; 

***Do the same for the second paire y1=28,y2=11.1;
***Do the same for the second paire y1=28,y2=12.6;
**........;
***Do the same for the last (141) paire y1=28,y2=14.2;


**THEN REPEAT FOR: y1=16.7, y2=11.1, 12.6, ect...; 

***Do the same for the second paire y1=16.7,y2=11.1;
***Do the same for the second paire y1=16.7,y2=12.6;
**........;
***Do the same for the last (141) paire y1=16.7,y2=14.2;

****HOW TO REPEAT THIS FROCESS FOR ALL 19881 COMBINATION IN THE DATASET (141 X 141 POSSIBLE COMBINATIONS)&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 09 Mar 2018 01:22:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Cross-Tabulation-of-Two-variables/m-p/443945#M282885</guid>
      <dc:creator>jeka1212</dc:creator>
      <dc:date>2018-03-09T01:22:48Z</dc:date>
    </item>
    <item>
      <title>Re: Cross Tabulation  of Two variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Cross-Tabulation-of-Two-variables/m-p/443952#M282886</link>
      <description>&lt;P&gt;Liek this?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data HAVE;
  input Y1 Y2 KYPHOSIS;
cards;
28 11.1 100
28 13.3 200
16 16.1 300
16 13.3 400
run;

data _null_;
  set HAVE(keep=Y1) nobs=NOBS;
  do I=1 to NOBS;
    J+1;
    set HAVE(keep=Y2) point=I;
    call execute('data TEMP; set HAVE;');
    call execute(catt('BETA1_BETA2=(Y1&amp;lt;=',Y1,')|(Y2&amp;lt;=',Y2,');'));
    call execute('proc freq data=TEMP order=data noprint;');
    call execute('tables BETA1_BETA2*KYPHOSIS');
    call execute(catt('/out=OUTFREQ',J,'(label="Y1=',Y1,' Y2=',Y2,'") outpct sparse;run;'));
  end;
run;



 &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Mar 2018 02:06:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Cross-Tabulation-of-Two-variables/m-p/443952#M282886</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2018-03-09T02:06:29Z</dc:date>
    </item>
    <item>
      <title>Re: Cross Tabulation  of Two variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Cross-Tabulation-of-Two-variables/m-p/443978#M282887</link>
      <description>&lt;P&gt;Many thanks ChrisNZ. The codes did help.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was wondering if you can help to append&amp;nbsp; each results in 1 big dataset please?&amp;nbsp; I have attached an example.&lt;/P&gt;&lt;PRE&gt;data HAVE;
  input Y1 Y2 KYPHOSIS;
cards;
28 11.1 100
28 13.3 200
16 16.1 300
16 13.3 400
run;

data _null_;
  set HAVE(keep=Y1) nobs=NOBS;
  do I=1 to NOBS;
    J+1;
    set HAVE(keep=Y2) point=I;
    call execute('data TEMP; set HAVE;');
    call execute(catt('BETA1_BETA2=(Y1&amp;lt;=',Y1,')|(Y2&amp;lt;=',Y2,');'));
    call execute('proc freq data=TEMP order=data noprint;');
    call execute('tables BETA1_BETA2*KYPHOSIS');
    call execute(catt('/out=OUTFREQ',J,'(label="Y1=',Y1,' Y2=',Y2,'") outpct sparse;run;'));
  end;
run;&lt;/PRE&gt;</description>
      <pubDate>Fri, 09 Mar 2018 04:31:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Cross-Tabulation-of-Two-variables/m-p/443978#M282887</guid>
      <dc:creator>jeka1212</dc:creator>
      <dc:date>2018-03-09T04:31:02Z</dc:date>
    </item>
    <item>
      <title>Re: Cross Tabulation  of Two variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Cross-Tabulation-of-Two-variables/m-p/443980#M282888</link>
      <description>&lt;P&gt;Microsoft documents are best avoided.&lt;/P&gt;
&lt;P&gt;Many people will not touch them.&lt;/P&gt;
&lt;P&gt;Just add this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;    call execute(catt('proc append base=BASE append=OUTFREQ',J,';run;'));
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Mar 2018 04:34:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Cross-Tabulation-of-Two-variables/m-p/443980#M282888</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2018-03-09T04:34:46Z</dc:date>
    </item>
    <item>
      <title>Re: Cross Tabulation  of Two variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Cross-Tabulation-of-Two-variables/m-p/444064#M282889</link>
      <description>&lt;P&gt;OK many thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am having the error message below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: Line generated by the CALL EXECUTE routine.&lt;BR /&gt;96 + &lt;STRONG&gt;proc append base=BASE append=OUTFREQ16;run;&lt;/STRONG&gt;&lt;BR /&gt;------&lt;BR /&gt;22&lt;BR /&gt;76&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ERROR 22-322: Syntax error, expecting one of the following: ;, (, APPENDVER, APPENDVERSION,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;BASE, CREATE, DATA, FORCE, GETSORT, NEW, NOWARN, OUT.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ERROR 76-322: Syntax error, statement will be ignored.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Basically each paire of (y1,y1) has "OUTFREQ" output like this:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;Beta1_beta2&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;kyphosis&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;COUNT&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;PERCENT&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;PCT_ROW&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;PCT_COL&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.70922&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;100&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;1.111111&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;89&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;63.12057&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;63.57143&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;98.88889&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;51&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;36.17021&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;36.42857&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;100&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I need to append it like this:&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;Y1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Y2&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;perctCount POS&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;perct count&lt;/P&gt;&lt;P&gt;NEG&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;FALPOS&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;FALNEG&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;SENSIT&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;SPECIF&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;NPV&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;PPV&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;16&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;13.3&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;89&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;51&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;98.89&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;63.57143&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Mar 2018 13:07:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Cross-Tabulation-of-Two-variables/m-p/444064#M282889</guid>
      <dc:creator>jeka1212</dc:creator>
      <dc:date>2018-03-09T13:07:56Z</dc:date>
    </item>
    <item>
      <title>Re: Cross Tabulation  of Two variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Cross-Tabulation-of-Two-variables/m-p/444278#M282890</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;beta1 = y1&amp;gt;28;
beta2 = y2&amp;gt;13.3;&lt;/PRE&gt;
&lt;P&gt;is another way to assign the beta variables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do you really want to assign 0 if y1 or y2 are actually missing though?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;if beta1=1 &amp;amp; beta2=1 then beta1_beta2=1;
if beta1=1 &amp;amp; beta2=0 then beta1_beta2=1;
if beta1=0 &amp;amp; beta2=1 then beta1_beta2=1;
if beta1=0 &amp;amp; beta2=0 then beta1_beta2=0;&lt;/PRE&gt;
&lt;P&gt;(though else would help on the 2nd 3rd and 4th If)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;is the same as&lt;/P&gt;
&lt;PRE&gt;beta1_beta2= beta1 or beta2;
&lt;/PRE&gt;
&lt;P&gt;which will execute a tad faster.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Which will matter on doing 19881 iterations.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You better have something that saves your Proc Freq output to a unique name each time or each iteration will overwrite the previous&lt;/P&gt;</description>
      <pubDate>Fri, 09 Mar 2018 21:15:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Cross-Tabulation-of-Two-variables/m-p/444278#M282890</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-03-09T21:15:01Z</dc:date>
    </item>
    <item>
      <title>Re: Cross Tabulation  of Two variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Cross-Tabulation-of-Two-variables/m-p/444279#M282891</link>
      <description>&lt;P&gt;&amp;gt;&lt;STRONG&gt;proc append base=BASE append=OUTFREQ16;run;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My bad, end of Friday evening error. &lt;STRONG&gt;data= &lt;/STRONG&gt;not&lt;STRONG&gt; append=.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have even bothered looking at the syntax for proc append? You have to help yourself too.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As for reformatting the dataset, you can add an extra step after table BASE is created.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Mar 2018 21:20:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Cross-Tabulation-of-Two-variables/m-p/444279#M282891</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2018-03-09T21:20:22Z</dc:date>
    </item>
    <item>
      <title>Re: Cross Tabulation  of Two variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Cross-Tabulation-of-Two-variables/m-p/444282#M282892</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;SPAN class="login-bold"&gt;&lt;A href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884" target="_self"&gt;ballardw&lt;/A&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="login-bold"&gt;I am trying to see how I can implement your useful comments in practice.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="login-bold"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Mar 2018 21:26:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Cross-Tabulation-of-Two-variables/m-p/444282#M282892</guid>
      <dc:creator>jeka1212</dc:creator>
      <dc:date>2018-03-09T21:26:28Z</dc:date>
    </item>
    <item>
      <title>Re: Cross Tabulation  of Two variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Cross-Tabulation-of-Two-variables/m-p/444284#M282893</link>
      <description>I corrected the error after I posted the question. Thanks again&lt;BR /&gt;&lt;BR /&gt;Still working on reformatting now</description>
      <pubDate>Fri, 09 Mar 2018 21:43:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Cross-Tabulation-of-Two-variables/m-p/444284#M282893</guid>
      <dc:creator>jeka1212</dc:creator>
      <dc:date>2018-03-09T21:43:14Z</dc:date>
    </item>
    <item>
      <title>Re: Cross Tabulation  of Two variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Cross-Tabulation-of-Two-variables/m-p/444329#M282894</link>
      <description>&lt;P&gt;&amp;gt; I corrected the error after I posted the question.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You should have edited your question then, to avoid my spending time giving you an answer you already had.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Mar 2018 01:52:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Cross-Tabulation-of-Two-variables/m-p/444329#M282894</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2018-03-10T01:52:11Z</dc:date>
    </item>
    <item>
      <title>Re: Cross Tabulation  of Two variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Cross-Tabulation-of-Two-variables/m-p/444332#M282895</link>
      <description>Sorry</description>
      <pubDate>Sat, 10 Mar 2018 02:01:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Cross-Tabulation-of-Two-variables/m-p/444332#M282895</guid>
      <dc:creator>jeka1212</dc:creator>
      <dc:date>2018-03-10T02:01:17Z</dc:date>
    </item>
    <item>
      <title>Re: Cross Tabulation  of Two variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Cross-Tabulation-of-Two-variables/m-p/444335#M282896</link>
      <description>&lt;P&gt;No worries. For next time. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Mar 2018 02:29:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Cross-Tabulation-of-Two-variables/m-p/444335#M282896</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2018-03-10T02:29:34Z</dc:date>
    </item>
    <item>
      <title>Re: Cross Tabulation  of Two variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Cross-Tabulation-of-Two-variables/m-p/444338#M282897</link>
      <description>&lt;P&gt;is your book (&lt;A href="https://www.amazon.com/High-Performance-SAS-Coding-Christian-Graffeuille/dp/1512397490" rel="nofollow noopener noreferrer" target="_blank"&gt;High-Performance&amp;nbsp;SAS&amp;nbsp;Coding&lt;/A&gt;) good for beginners in programming&amp;nbsp; like us?&lt;/P&gt;</description>
      <pubDate>Sat, 10 Mar 2018 03:12:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Cross-Tabulation-of-Two-variables/m-p/444338#M282897</guid>
      <dc:creator>jeka1212</dc:creator>
      <dc:date>2018-03-10T03:12:23Z</dc:date>
    </item>
    <item>
      <title>This book is not targeted at beginners. The SAS language...</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Cross-Tabulation-of-Two-variables/m-p/444348#M282898</link>
      <description>&lt;P&gt;This book is not targeted at beginners. The SAS language itself is not taught. But as you learn it, the book shows how to use the language's features efficiently and explains what happens behind the scene. There are many ways to perform a given task with SAS. Some are much&amp;nbsp;more efficient&amp;nbsp;than others,&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Mar 2018 05:11:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Cross-Tabulation-of-Two-variables/m-p/444348#M282898</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2018-03-10T05:11:17Z</dc:date>
    </item>
    <item>
      <title>Re: This book is not targeted at beginners. The SAS language...</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Cross-Tabulation-of-Two-variables/m-p/444402#M282899</link>
      <description>OK good to know. Will order one as soon as possible</description>
      <pubDate>Sat, 10 Mar 2018 15:32:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Cross-Tabulation-of-Two-variables/m-p/444402#M282899</guid>
      <dc:creator>jeka1212</dc:creator>
      <dc:date>2018-03-10T15:32:03Z</dc:date>
    </item>
    <item>
      <title>Re: This book is not targeted at beginners. The SAS language...</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Cross-Tabulation-of-Two-variables/m-p/444517#M282900</link>
      <description>&lt;P&gt;Thank you. I hope you find it useful.&lt;/P&gt;</description>
      <pubDate>Sun, 11 Mar 2018 04:15:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Cross-Tabulation-of-Two-variables/m-p/444517#M282900</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2018-03-11T04:15:49Z</dc:date>
    </item>
  </channel>
</rss>

