<?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: Counting id-job combinations and ids exposed-2nd post: Please ignore first in SAS Studio</title>
    <link>https://communities.sas.com/t5/SAS-Studio/Counting-id-job-combinations-and-ids-exposed-2nd-post-Please/m-p/605798#M8320</link>
    <description>Thanks again! It works.</description>
    <pubDate>Wed, 20 Nov 2019 15:39:27 GMT</pubDate>
    <dc:creator>ak2011</dc:creator>
    <dc:date>2019-11-20T15:39:27Z</dc:date>
    <item>
      <title>Counting id-job combinations and ids exposed-2nd post: Please ignore first</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Counting-id-job-combinations-and-ids-exposed-2nd-post-Please/m-p/605358#M8296</link>
      <description>&lt;PRE&gt;I would greatly appreciate if someone helps me with the code to count the number of id_job &lt;BR /&gt;combinations for the merged dataset below: I have a total of 17 obs with 8 id_jobs: os1-1,os1-1 and os1-1&lt;BR /&gt;is 1 id-job combination;os1-2,os1-2,os1-2,os1-2 and os1-2 is another id-job combination,etc &lt;BR /&gt;for a total of 8 id-job combinations. For cla_expo &amp;amp; bio-exp, 0=unexposed and 1=exposed. &lt;BR /&gt;My task is to count the number of id-job exposed for cla and bio: For cla(idchem=99005),bio(idchem=990021):&lt;BR /&gt;For cla: number of id_job exposed is 5/8=62.5%, bio:3/8=37.5%&lt;BR /&gt;&lt;BR /&gt;Please find attached the output for cla, bio and merged cla and bio.&lt;BR /&gt;&lt;BR /&gt;I tried proc freq idchem(not shown) but it didn't give me the right percentages. &lt;BR /&gt;Could someone help me with the SAS code to compute the percent id_job exposed for cla and bio,please&lt;BR /&gt;&lt;BR /&gt;Also for the id exposed : For cla(idchem=990005), % id exposed is 3/4 = 75%&lt;BR /&gt;&lt;BR /&gt;Thanks very much.&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;data idnew1;&lt;BR /&gt;input id$ job idchem;&lt;BR /&gt;datalines;&lt;BR /&gt;os1 1 990005&lt;BR /&gt;os1 1 9900021&lt;BR /&gt;os1 1 211700&lt;BR /&gt;os1 2 211700&lt;BR /&gt;os1 2 9900021&lt;BR /&gt;os1 2 210701&lt;BR /&gt;os1 2 990005&lt;BR /&gt;os2 1 210701&lt;BR /&gt;os2 1 990005&lt;BR /&gt;os2 2 9900021&lt;BR /&gt;os2 3 210701&lt;BR /&gt;os2 3 990005&lt;BR /&gt;os3 3 210701&lt;BR /&gt;os3 1 211700&lt;BR /&gt;os4 1 210701&lt;BR /&gt;os4 1 990005&lt;BR /&gt;os4 1 211700&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV class="sasSource"&gt;1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;72&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV class="sasSource"&gt;73 data idnew1;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;74 input id$ job idchem;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;75 datalines;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The data set WORK.IDNEW1 has 17 observations and 3 variables.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: DATA statement used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.00 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.02 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;93 ;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;94 run;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;95&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;96 /* Cla-Exposure*/&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;97 data cla;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;98 set idnew1;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;99 if idchem=990005 then Cla_Exp=1; else Cla_Exp=0;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;100 run;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: There were 17 observations read from the data set WORK.IDNEW1.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The data set WORK.CLA has 17 observations and 4 variables.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: DATA statement used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.01 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.01 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;101&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;102 proc print data=cla;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;103 run;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: There were 17 observations read from the data set WORK.CLA.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE PRINT used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.17 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.18 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;104&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;105 /* Bio-Exposure*/&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;106 data bio;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;107 set idnew1;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;108 if idchem=9900021 then Bio_Exp=1; else Bio_Exp=0;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;109 run;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: There were 17 observations read from the data set WORK.IDNEW1.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The data set WORK.BIO has 17 observations and 4 variables.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: DATA statement used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.01 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.01 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;110&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;111 proc print data=bio;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;112 run;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: There were 17 observations read from the data set WORK.BIO.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE PRINT used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.17 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.17 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;113&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;114 /* Merging cla &amp;amp; bio files*/&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;115 data m1; merge cla bio;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;116 run;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: There were 17 observations read from the data set WORK.CLA.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: There were 17 observations read from the data set WORK.BIO.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The data set WORK.M1 has 17 observations and 5 variables.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: DATA statement used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.01 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.02 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;117&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;118 proc print data=m1;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;119 Title"Merged Cla &amp;amp; Bio exposures";&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;120 run;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: There were 17 observations read from the data set WORK.M1.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE PRINT used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.18 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.18 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;121&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;122&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;123&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;124 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;136&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 19 Nov 2019 11:02:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Counting-id-job-combinations-and-ids-exposed-2nd-post-Please/m-p/605358#M8296</guid>
      <dc:creator>ak2011</dc:creator>
      <dc:date>2019-11-19T11:02:15Z</dc:date>
    </item>
    <item>
      <title>Re: Counting id-job combinations and ids exposed-2nd post: Please ignore first</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Counting-id-job-combinations-and-ids-exposed-2nd-post-Please/m-p/605367#M8297</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/190754"&gt;@ak2011&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can try this. The idea is to retrieve separately frequencies and totals, and then to calculate percentages.&lt;/P&gt;
&lt;P&gt;In my opinion, it is not necessary to create additional variables (CLA_EXP, ... )&lt;/P&gt;
&lt;P&gt;Hope this help!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
	select a.idchem, a.frequency / b.total as percentage format=Percent8.2
	from (select idchem, count(id_job) as frequency from m1 group by idchem) as a,
		 (select count(distinct(id_job)) as total from m1) as b;
quit;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2019 14:14:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Counting-id-job-combinations-and-ids-exposed-2nd-post-Please/m-p/605367#M8297</guid>
      <dc:creator>ed_sas_member</dc:creator>
      <dc:date>2019-11-19T14:14:17Z</dc:date>
    </item>
    <item>
      <title>Re: Counting id-job combinations and ids exposed-2nd post: Please ignore first</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Counting-id-job-combinations-and-ids-exposed-2nd-post-Please/m-p/605416#M8306</link>
      <description>Thanks very much. It works perfect!</description>
      <pubDate>Tue, 19 Nov 2019 15:11:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Counting-id-job-combinations-and-ids-exposed-2nd-post-Please/m-p/605416#M8306</guid>
      <dc:creator>ak2011</dc:creator>
      <dc:date>2019-11-19T15:11:25Z</dc:date>
    </item>
    <item>
      <title>Re: Counting id-job combinations and ids exposed-2nd post: Please ignore first</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Counting-id-job-combinations-and-ids-exposed-2nd-post-Please/m-p/605429#M8307</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/190754"&gt;@ak2011&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;you're welcome &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2019 16:03:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Counting-id-job-combinations-and-ids-exposed-2nd-post-Please/m-p/605429#M8307</guid>
      <dc:creator>ed_sas_member</dc:creator>
      <dc:date>2019-11-19T16:03:11Z</dc:date>
    </item>
    <item>
      <title>Re: Counting id-job combinations and ids exposed-2nd post: Please ignore first</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Counting-id-job-combinations-and-ids-exposed-2nd-post-Please/m-p/605439#M8309</link>
      <description>Hi,&lt;BR /&gt;Thanks once again for the SAS code. Is there a way to show the numerators and denominators of the calculations: eg. 5/8 = 62.5%,etc. Thanks.</description>
      <pubDate>Tue, 19 Nov 2019 16:19:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Counting-id-job-combinations-and-ids-exposed-2nd-post-Please/m-p/605439#M8309</guid>
      <dc:creator>ak2011</dc:creator>
      <dc:date>2019-11-19T16:19:22Z</dc:date>
    </item>
    <item>
      <title>Re: Counting id-job combinations and ids exposed-2nd post: Please ignore first</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Counting-id-job-combinations-and-ids-exposed-2nd-post-Please/m-p/605455#M8311</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/190754"&gt;@ak2011&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have added the numerator (variable "frequency") and the denominator (variable "total") in the select clause:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
data m1;
	set idnew1;
	id_job = catx("_",id,job);
run;
proc sql;
	select a.idchem,
		   a.frequency,
		   b.total,
		   a.frequency / b.total as percentage format=Percent8.2
	from (select idchem, count(id_job) as frequency from m1 group by idchem) as a,
		 (select count(distinct(id_job)) as total from m1) as b;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;The result is the following :&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Capture d’écran 2019-11-19 à 17.59.50.png" style="width: 200px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/34083iA5C4BC5352FFFBC4/image-size/small?v=v2&amp;amp;px=200" role="button" title="Capture d’écran 2019-11-19 à 17.59.50.png" alt="Capture d’écran 2019-11-19 à 17.59.50.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;If you want to have a table rather than a report, you can add the clause "create table &amp;lt;dataset name&amp;gt; as" before the select clause in the same statement.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2019 17:01:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Counting-id-job-combinations-and-ids-exposed-2nd-post-Please/m-p/605455#M8311</guid>
      <dc:creator>ed_sas_member</dc:creator>
      <dc:date>2019-11-19T17:01:41Z</dc:date>
    </item>
    <item>
      <title>Re: Counting id-job combinations and ids exposed-2nd post: Please ignore first</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Counting-id-job-combinations-and-ids-exposed-2nd-post-Please/m-p/605646#M8317</link>
      <description>Perfect! Much thanks again!</description>
      <pubDate>Wed, 20 Nov 2019 09:07:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Counting-id-job-combinations-and-ids-exposed-2nd-post-Please/m-p/605646#M8317</guid>
      <dc:creator>ak2011</dc:creator>
      <dc:date>2019-11-20T09:07:45Z</dc:date>
    </item>
    <item>
      <title>Re: Counting id-job combinations and ids exposed-2nd post: Please ignore first</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Counting-id-job-combinations-and-ids-exposed-2nd-post-Please/m-p/605678#M8318</link>
      <description>Another issue, please: How can I arrange the frequencies and percentages in descending count:&lt;BR /&gt;I tried several options all to no avail.&lt;BR /&gt;Please help. Thanks.&lt;BR /&gt;ak.</description>
      <pubDate>Wed, 20 Nov 2019 11:29:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Counting-id-job-combinations-and-ids-exposed-2nd-post-Please/m-p/605678#M8318</guid>
      <dc:creator>ak2011</dc:creator>
      <dc:date>2019-11-20T11:29:42Z</dc:date>
    </item>
    <item>
      <title>Re: Counting id-job combinations and ids exposed-2nd post: Please ignore first</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Counting-id-job-combinations-and-ids-exposed-2nd-post-Please/m-p/605688#M8319</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/190754"&gt;@ak2011&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can add the "order by" clause just before the "quit" statement as follows:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data m1;
	set idnew1;
	id_job = catx("_",id,job);
run;
proc sql;
	select a.idchem,
		   a.frequency,
		   b.total,
		   a.frequency / b.total as percentage format=Percent8.2
	from (select idchem, count(id_job) as frequency from m1 group by idchem) as a,
		 (select count(distinct(id_job)) as total from m1) as b
	&lt;FONT color="#FF00FF"&gt;order by a.frequency desc;&lt;/FONT&gt;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Best,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2019 11:52:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Counting-id-job-combinations-and-ids-exposed-2nd-post-Please/m-p/605688#M8319</guid>
      <dc:creator>ed_sas_member</dc:creator>
      <dc:date>2019-11-20T11:52:33Z</dc:date>
    </item>
    <item>
      <title>Re: Counting id-job combinations and ids exposed-2nd post: Please ignore first</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Counting-id-job-combinations-and-ids-exposed-2nd-post-Please/m-p/605798#M8320</link>
      <description>Thanks again! It works.</description>
      <pubDate>Wed, 20 Nov 2019 15:39:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Counting-id-job-combinations-and-ids-exposed-2nd-post-Please/m-p/605798#M8320</guid>
      <dc:creator>ak2011</dc:creator>
      <dc:date>2019-11-20T15:39:27Z</dc:date>
    </item>
    <item>
      <title>Re: Counting id-job combinations and ids exposed-2nd post: Please ignore first</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Counting-id-job-combinations-and-ids-exposed-2nd-post-Please/m-p/605803#M8321</link>
      <description>&lt;P&gt;You're welcome!&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2019 15:44:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Counting-id-job-combinations-and-ids-exposed-2nd-post-Please/m-p/605803#M8321</guid>
      <dc:creator>ed_sas_member</dc:creator>
      <dc:date>2019-11-20T15:44:22Z</dc:date>
    </item>
    <item>
      <title>Re: Counting id-job combinations and ids exposed-2nd post: Please ignore first</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Counting-id-job-combinations-and-ids-exposed-2nd-post-Please/m-p/606924#M8375</link>
      <description>Hi,&lt;BR /&gt;Your proc sql approach is very helpful but is there a way to use the same proc sql for cross tabulations for a larger dataset with 30 idchems(not 4 like the smaller dataset).&lt;BR /&gt; eg. cla_exp * bio_exp; cla_exp* amo_exp etc. &lt;BR /&gt;I would really appreciate your help.&lt;BR /&gt;Thanks in advance.&lt;BR /&gt;ak.</description>
      <pubDate>Mon, 25 Nov 2019 10:57:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Counting-id-job-combinations-and-ids-exposed-2nd-post-Please/m-p/606924#M8375</guid>
      <dc:creator>ak2011</dc:creator>
      <dc:date>2019-11-25T10:57:22Z</dc:date>
    </item>
  </channel>
</rss>

