<?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: Merge/Join of two tables by row and column value in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Merge-Join-of-two-tables-by-row-and-column-value/m-p/502817#M134281</link>
    <description>&lt;P&gt;Is the final result to be a data set or a report that people read?&lt;/P&gt;
&lt;P&gt;One of the differences is that some of the reporting procedures can use a complete format option such as PRELOADFMT to require all of the formatted levels of a variable to be reported even though they are not in the data.&lt;/P&gt;
&lt;P&gt;You mention 10 age groups but your data only provides examples for 7 so it would be very hard to provide a complete example.&lt;/P&gt;
&lt;PRE&gt;data work.hospital_sum;
input service_area $ drg $ payor_group $ age_group $ market_in_mig client_in_mkt;
datalines;
Toledo 935 govt age0-5 1 1
Toledo 935 govt age18-24 1 0
Toledo 935 govt age25-34 1 0
Toledo 935 govt age35-44 0 1
Toledo 935 comm age18-24 1 0
Toledo 935 comm age24-34 1 0
Toledo 935 comm age55-64 1 0
Toledo 935 comm age65-74 1 0
Toledo 935 caid age0-5 1 2
Toledo 935 caid age35-44 0 2
Toledo 935 caid age45-54 0 1
Toledo 935 care age35-44 0 1
Toledo 935 care age45-54 0 1
Toledo 935 care age55-64 1 1
Toledo 935 care age75-84 0 3
Toledo 935 self_pay age45-54 0 1
;
run;
data work.mixed_sum;
input service_area $ drg $ payor_group $ age_group $ market_total;
datalines;
Lima 935 govt age18-24 1
Lima 935 govt age25-34 1
Lima 935 govt age55-64 1
Lima 935 caid age0-5 1
Toledo 935 comm age0-5 1
Toledo 935 comm age18-24 0
Toledo 935 comm age25-34 0
Toledo 935 comm age35-44 1
Toledo 935 govt age64-74 0
Toledo 935 caid age0-5 2
Toledo 935 caid age35-44 2
Toledo 935 caid age45-54 1
Toledo 935 care age35-44 1
Toledo 935 care age45-54 1
Toledo 935 care age55-64 1
Toledo 935 care age75-84 3
Toledo 935 self_pay age45-54 1
;
run;

proc sort data=work.hospital_sum ;
   by service_area drg payor_group age_group;
run;
proc sort data=work.mixed_sum ;
   by service_area drg payor_group age_group;
run;

data want;
   merge work.hospital_sum work.mixed_sum;
   by service_area drg payor_group age_group;
run;

proc format library=work;
value $agegroup
'age0-5'  ='age0-5'  
'age05-17'='age05-17'
'age18-24'='age18-24' 
'age25-34'='age25-34' 
'age35-44'='age35-44' 
'age45-54'='age45-54' 
'age55-64'='age55-64' 
'age75-84'='age75-84' 
;
run;

proc tabulate data=want;
   class service_area drg payor_group ;
   class age_group/preloadfmt ;
   format age_group $agegroup.;
   var market_in_mig client_in_mkt  market_total;
   table service_area* drg* payor_group*age_group,
         (market_in_mig client_in_mkt  market_total)*max=' '*f=best5.
         /printmiss misstext=' '
   ;
run;&lt;/PRE&gt;
&lt;P&gt;The MISSTEXT option could also show 0 instead if&amp;nbsp; desired.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The issue of merging on not quite the same service area values is going to require a lot more knowledge about the data sources and possibly it might be better to go back and not use summarized data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It helps to post code into a code box using the forum's {I} icon. The message windows here will reformat text and often affect the code in ways that data steps may not run. And sometimes it appears that "invisible" html codes get inserted generating very hard to&amp;nbsp; diagnose errors. The code box treats code as plain text and is much easier to use.&lt;/P&gt;</description>
    <pubDate>Tue, 09 Oct 2018 17:35:35 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2018-10-09T17:35:35Z</dc:date>
    <item>
      <title>Merge/Join of two tables by row and column value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merge-Join-of-two-tables-by-row-and-column-value/m-p/502440#M134122</link>
      <description>&lt;P&gt;Going to give this a shot without all of the pesky code I have written that doesn't work.&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have one table (master) in which two different summary tables are created (hospital and mixed).&amp;nbsp; After the summaries are created, I would like to merge the two summaries (hospital and mixed) back together on a series linked variables to a table (final)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To this point, PROC SQL and Group By have been used to create the summaries as well as PROC SQL to join the summaries together.&amp;nbsp; The service_area field below is based on the hospital's zip code being within a designated service area.&amp;nbsp; Essentially created by using a format to map a zip to the service area name. Pretty straightforward.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Hospital Table (summarized):&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;data hospital_sum;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;input service_area $ drg $&amp;nbsp;payor_group $ age_group $ market_in_mig client_in_mkt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;datalines;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Toledo 935&amp;nbsp;govt age0-5 1 1&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Toledo&amp;nbsp;&lt;/SPAN&gt;935 &lt;SPAN&gt;govt age18-24 1 0&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Toledo&amp;nbsp;&lt;/SPAN&gt;935 &lt;SPAN&gt;govt age25-34 1 0&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Toledo&amp;nbsp;&lt;/SPAN&gt;935 &lt;SPAN&gt;govt age35-44 0 1&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Toledo&amp;nbsp;&lt;/SPAN&gt;935&amp;nbsp;comm age18-24 1 0&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Toledo&amp;nbsp;&lt;/SPAN&gt;935 &lt;SPAN&gt;comm age24-34 1 0&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Toledo&amp;nbsp;&lt;/SPAN&gt;935 &lt;SPAN&gt;comm age55-64 1 0&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Toledo&amp;nbsp;&lt;/SPAN&gt;935 &lt;SPAN&gt;comm age65-74 1 0&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Toledo&amp;nbsp;&lt;/SPAN&gt;935 caid age0-5 1 2&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Toledo&amp;nbsp;935 caid age35-44 0 2&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Toledo&amp;nbsp;935 caid age45-54 0 1&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Toledo&amp;nbsp;935 care age35-44 0 1&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Toledo&amp;nbsp;935 care age45-54 0 1&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Toledo&amp;nbsp;935 care age55-64 1 1&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Toledo&amp;nbsp;935 care age75-84 0 3&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Toledo&amp;nbsp;935 self_pay age45-54 0 1&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;;&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;The "service_area" in this table is created by determining whether or not a patient that visited the hospital is from the hospital's service area.&amp;nbsp; If the patient was from the hospital service area, then the "service_area" is the same as above.&amp;nbsp; If the patient is not within the hospital service area, this table's "service_area" contains the service area of the patient (in migration from the hospital's perspective)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Mixed Table (summarized):&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;data mixed_sum;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;input service_area $ drg $&amp;nbsp;payor_group $ age_group $ market_total&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;datalines;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Lima&amp;nbsp;935&amp;nbsp;govt age18-24 1&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Lima&amp;nbsp;&lt;/SPAN&gt;935&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;govt age25-34 1&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Lima&amp;nbsp;&lt;/SPAN&gt;935&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;govt age55-64 1&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Lima&amp;nbsp;&lt;/SPAN&gt;935&lt;SPAN&gt;&amp;nbsp;caid&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;age0-5 1&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Toledo&amp;nbsp;&lt;/SPAN&gt;935&amp;nbsp;comm age0-5 1&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Toledo&amp;nbsp;&lt;/SPAN&gt;935&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;comm age18-24 0&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Toledo&amp;nbsp;&lt;/SPAN&gt;935&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;comm age25-34 0&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Toledo&amp;nbsp;&lt;/SPAN&gt;935&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;comm age35-44 1&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Toledo&amp;nbsp;&lt;/SPAN&gt;935 govt age64-74 0&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Toledo&amp;nbsp;935 caid age0-5 2&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Toledo&amp;nbsp;935 caid age35-44 2&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Toledo&amp;nbsp;935 caid age45-54 1&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Toledo&amp;nbsp;935 care age35-44 1&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Toledo&amp;nbsp;935 care age45-54 1&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Toledo&amp;nbsp;935 care age55-64 1&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Toledo&amp;nbsp;935 care age75-84 3&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Toledo&amp;nbsp;935 self_pay age45-54 1&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;;&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;When you merge these two files by service_area, drg, payor_group, and age_group, you will see that the market_in_mig loses records.&amp;nbsp; It goes from 9 to 6.&amp;nbsp; I understand the matching to these levels is going to drop data in proc sql because that particular match doesn't exist.&amp;nbsp; If you remove age_group, the fields roll up nicely.&amp;nbsp; That extra level is messing me up.&amp;nbsp; The other obvious issue is that the service_areas between the two tables are not truly the same (apples-to-apples) in the way they were created.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Am I trying to join/merge tables that can't be based on the differing service_area definitions OR can I force all of the age_groups to appear (there are 10 total) in both tables and successfully merge the tables that way?&amp;nbsp; If so, how do I keep all of the age groups using PROC SQL?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think they are looking at two differing results but the client insists it can be on 'one page'.&amp;nbsp; I'm struggling with PROC SQL (left join, full, full outer, etc) versus MERGE as being the way to bring these together.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas at this point will be grateful.&amp;nbsp; I can provide more information if necessary.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Oct 2018 16:04:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merge-Join-of-two-tables-by-row-and-column-value/m-p/502440#M134122</guid>
      <dc:creator>shounster</dc:creator>
      <dc:date>2018-10-08T16:04:44Z</dc:date>
    </item>
    <item>
      <title>Re: Merge/Join of two tables by row and column value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merge-Join-of-two-tables-by-row-and-column-value/m-p/502476#M134138</link>
      <description>&lt;P&gt;It's helpful if you would include your desired output.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Oct 2018 18:39:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merge-Join-of-two-tables-by-row-and-column-value/m-p/502476#M134138</guid>
      <dc:creator>mbuchecker</dc:creator>
      <dc:date>2018-10-08T18:39:07Z</dc:date>
    </item>
    <item>
      <title>Re: Merge/Join of two tables by row and column value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merge-Join-of-two-tables-by-row-and-column-value/m-p/502817#M134281</link>
      <description>&lt;P&gt;Is the final result to be a data set or a report that people read?&lt;/P&gt;
&lt;P&gt;One of the differences is that some of the reporting procedures can use a complete format option such as PRELOADFMT to require all of the formatted levels of a variable to be reported even though they are not in the data.&lt;/P&gt;
&lt;P&gt;You mention 10 age groups but your data only provides examples for 7 so it would be very hard to provide a complete example.&lt;/P&gt;
&lt;PRE&gt;data work.hospital_sum;
input service_area $ drg $ payor_group $ age_group $ market_in_mig client_in_mkt;
datalines;
Toledo 935 govt age0-5 1 1
Toledo 935 govt age18-24 1 0
Toledo 935 govt age25-34 1 0
Toledo 935 govt age35-44 0 1
Toledo 935 comm age18-24 1 0
Toledo 935 comm age24-34 1 0
Toledo 935 comm age55-64 1 0
Toledo 935 comm age65-74 1 0
Toledo 935 caid age0-5 1 2
Toledo 935 caid age35-44 0 2
Toledo 935 caid age45-54 0 1
Toledo 935 care age35-44 0 1
Toledo 935 care age45-54 0 1
Toledo 935 care age55-64 1 1
Toledo 935 care age75-84 0 3
Toledo 935 self_pay age45-54 0 1
;
run;
data work.mixed_sum;
input service_area $ drg $ payor_group $ age_group $ market_total;
datalines;
Lima 935 govt age18-24 1
Lima 935 govt age25-34 1
Lima 935 govt age55-64 1
Lima 935 caid age0-5 1
Toledo 935 comm age0-5 1
Toledo 935 comm age18-24 0
Toledo 935 comm age25-34 0
Toledo 935 comm age35-44 1
Toledo 935 govt age64-74 0
Toledo 935 caid age0-5 2
Toledo 935 caid age35-44 2
Toledo 935 caid age45-54 1
Toledo 935 care age35-44 1
Toledo 935 care age45-54 1
Toledo 935 care age55-64 1
Toledo 935 care age75-84 3
Toledo 935 self_pay age45-54 1
;
run;

proc sort data=work.hospital_sum ;
   by service_area drg payor_group age_group;
run;
proc sort data=work.mixed_sum ;
   by service_area drg payor_group age_group;
run;

data want;
   merge work.hospital_sum work.mixed_sum;
   by service_area drg payor_group age_group;
run;

proc format library=work;
value $agegroup
'age0-5'  ='age0-5'  
'age05-17'='age05-17'
'age18-24'='age18-24' 
'age25-34'='age25-34' 
'age35-44'='age35-44' 
'age45-54'='age45-54' 
'age55-64'='age55-64' 
'age75-84'='age75-84' 
;
run;

proc tabulate data=want;
   class service_area drg payor_group ;
   class age_group/preloadfmt ;
   format age_group $agegroup.;
   var market_in_mig client_in_mkt  market_total;
   table service_area* drg* payor_group*age_group,
         (market_in_mig client_in_mkt  market_total)*max=' '*f=best5.
         /printmiss misstext=' '
   ;
run;&lt;/PRE&gt;
&lt;P&gt;The MISSTEXT option could also show 0 instead if&amp;nbsp; desired.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The issue of merging on not quite the same service area values is going to require a lot more knowledge about the data sources and possibly it might be better to go back and not use summarized data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It helps to post code into a code box using the forum's {I} icon. The message windows here will reformat text and often affect the code in ways that data steps may not run. And sometimes it appears that "invisible" html codes get inserted generating very hard to&amp;nbsp; diagnose errors. The code box treats code as plain text and is much easier to use.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Oct 2018 17:35:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merge-Join-of-two-tables-by-row-and-column-value/m-p/502817#M134281</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-10-09T17:35:35Z</dc:date>
    </item>
    <item>
      <title>Re: Merge/Join of two tables by row and column value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merge-Join-of-two-tables-by-row-and-column-value/m-p/503252#M134441</link>
      <description>I do apologize about the lack of output. It's been a bit of a conundrum since there are two service areas at play and trying to determine if I need to use both versus one versus some other way of grouping.</description>
      <pubDate>Wed, 10 Oct 2018 21:38:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merge-Join-of-two-tables-by-row-and-column-value/m-p/503252#M134441</guid>
      <dc:creator>shounster</dc:creator>
      <dc:date>2018-10-10T21:38:33Z</dc:date>
    </item>
    <item>
      <title>Re: Merge/Join of two tables by row and column value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merge-Join-of-two-tables-by-row-and-column-value/m-p/503255#M134444</link>
      <description>Thank you very much for taking the time to review the code with little data or expected outcome. Part of the issue here has to do with the requested service areas. Since there is one that is related to the facility and one that is a hybrid of hospital and patient origin, it makes it a bit of a challenge to create output that can be utilized in Tableau.&lt;BR /&gt;&lt;BR /&gt;Thank you for the reminder regarding the {I} icon. I completely whiffed on that and I apologize.</description>
      <pubDate>Wed, 10 Oct 2018 21:41:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merge-Join-of-two-tables-by-row-and-column-value/m-p/503255#M134444</guid>
      <dc:creator>shounster</dc:creator>
      <dc:date>2018-10-10T21:41:25Z</dc:date>
    </item>
  </channel>
</rss>

