<?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: Inline view calculation in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Inline-view-calculation/m-p/178501#M45585</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 Feb 2014 17:00:18 GMT</pubDate>
    <dc:creator>mdbenson</dc:creator>
    <dc:date>2014-02-20T17:00:18Z</dc:date>
    <item>
      <title>Inline view calculation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Inline-view-calculation/m-p/178493#M45577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In this inline view, I'm grouping by Department, but I want to use a calculation (co_avg_salary) which I do not want grouped.&amp;nbsp; avg_salary will be grouped by Department and then divided by the co_avg_salary (the average salary for the whole company).&amp;nbsp; How do I co_avg_salary without grouping it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;&amp;nbsp; select Department, Employees, avg_salary, pct_salary, pay_level&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from (select Department,(count(Employee_ID)) as Employees,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mean(salary) as avg_salary 'Average Salary' format=dollar9.,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (mean(salary)/calculated Employees) as co_avg_salary,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (calculated avg_salary/calculated co_avg_salary)&amp;nbsp; &lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;as pct_salary 'Dept vs. Overall' format=percent8.1,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; case&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; when (calculated avg_salary &amp;gt; calculated co_avg_salary)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; then 'Above Avg.'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else 'Avg. or Below'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end as pay_level 'Pay Level'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; from costs.payroll&lt;/P&gt;&lt;P&gt;&amp;nbsp; where Department ne 'Executive' and Employees &amp;gt; 7&lt;/P&gt;&lt;P&gt;&amp;nbsp; group by Department) as job;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Feb 2014 20:37:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Inline-view-calculation/m-p/178493#M45577</guid>
      <dc:creator>mdbenson</dc:creator>
      <dc:date>2014-02-18T20:37:39Z</dc:date>
    </item>
    <item>
      <title>Re: Inline view calculation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Inline-view-calculation/m-p/178494#M45578</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why not join to a subquery instead? Not sure what join (join, cross join) will work, but the following is a start I believe (untested). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;create table want as&lt;/P&gt;&lt;P&gt;&amp;nbsp; select Department,(count(Employee_ID)) as Employees,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mean(salary) as avg_salary 'Average Salary' format=dollar9.,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (mean(salary)/calculated Employees) as co_avg_salary,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (calculated avg_salary/ b.co_avg_salary)&amp;nbsp; &lt;SPAN style="font-size: 10pt;"&gt;as pct_salary 'Dept vs. Overall' format=percent8.1,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; case&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; when (calculated avg_salary &amp;gt; b.co_avg_salary)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; then 'Above Avg.'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else 'Avg. or Below'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end as pay_level 'Pay Level'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; from costs.payroll&lt;/P&gt;&lt;P&gt;&amp;nbsp; cross join&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (select&amp;nbsp;&amp;nbsp; mean(salary) as co_avg_salary where department ne 'Executive' and employees &amp;gt; 7) as b&lt;/P&gt;&lt;P&gt;&amp;nbsp; where Department ne 'Executive' and Employees &amp;gt; 7&lt;/P&gt;&lt;P&gt;&amp;nbsp; group by Department as job;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Feb 2014 20:50:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Inline-view-calculation/m-p/178494#M45578</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-02-18T20:50:00Z</dc:date>
    </item>
    <item>
      <title>Re: Inline view calculation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Inline-view-calculation/m-p/178495#M45579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #000000; font-size: 12pt; font-family: Calibri;"&gt;Mike,&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;&lt;SPAN style="font-family: Calibri; color: #000000; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #000000; font-size: 12pt; font-family: Calibri;"&gt;two thoughts, off the top of my head -&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;&lt;SPAN style="font-family: Calibri; color: #000000; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;&lt;SPAN style="color: #000000; font-size: 12pt; font-family: Calibri;"&gt;1.) two queries one to get number of employees and average salary for entire company, attributing each to a (macro) variable, and the other to calculate the individual department numbers.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt; &lt;/P&gt;&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;2.) As Reeza mentions, use a sub-query to calculate the aforementioned company figures, then join to the aggregates for each department:&lt;/P&gt;&lt;P class="MsoNormal"&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;something like&lt;/P&gt;&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;proc sql;&lt;/P&gt;&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;select department, avg(salary) as calculated dept_avg_salary, dept_avg_salary/company_avg_salary as pct_of_overall format=percent8.1&lt;/P&gt;&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;from employees inner join (select avg(salary) as company_avg_salary from employees)...&lt;/P&gt;&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Feb 2014 21:05:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Inline-view-calculation/m-p/178495#M45579</guid>
      <dc:creator>cwcaulkins</dc:creator>
      <dc:date>2014-02-18T21:05:18Z</dc:date>
    </item>
    <item>
      <title>Re: Inline view calculation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Inline-view-calculation/m-p/178496#M45580</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Reorganize your query as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;select &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Department, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Employees, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; avg_salary, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; avg_salary*sum(employees)/sum(totSalary) as pct_salary&amp;nbsp; 'Dept vs. Overall' format=percent8.1, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; case&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; when (calculated pct_salary &amp;gt; 1) then 'Above Avg.'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; else 'Avg. or Below'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; end as pay_level 'Pay Level'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;from&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; (select &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Department,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; count(Employee_ID) as Employees,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; mean(salary) as avg_salary 'Average Salary' format=dollar9.,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; sum(salary) as totSalary&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; from costs.payroll&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; group by Department)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;where Department ne 'Executive' and Employees &amp;gt; 7;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;quit;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where I assumed that the overall mean salary is the mean employee salary and not the mean salary of the departments, but that it excludes executives and employees from departments with less than 8 employees.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Feb 2014 21:24:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Inline-view-calculation/m-p/178496#M45580</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2014-02-18T21:24:04Z</dc:date>
    </item>
    <item>
      <title>Re: Inline view calculation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Inline-view-calculation/m-p/178497#M45581</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you don't want to exclude small departments from overall mean salary calculation then the query can be simpler:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;select&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Department,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; count(Employee_ID) as Employees,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; mean(salary) as avg_salary 'Average Salary' format=dollar9.,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; calculated avg_salary/&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; (select mean(salary) from costs.payroll where Department ne 'Executive')&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; as pct_salary&amp;nbsp; 'Dept vs. Overall' format=percent8.1,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; case&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; when (calculated pct_salary &amp;gt; 1) then 'Above Avg.'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; else 'Avg. or Below'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; end as pay_level 'Pay Level'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;from costs.payroll&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;where Department ne 'Executive'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;group by Department&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;having count(Employee_ID) &amp;gt; 7;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;quit;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Feb 2014 21:58:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Inline-view-calculation/m-p/178497#M45581</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2014-02-18T21:58:42Z</dc:date>
    </item>
    <item>
      <title>Re: Inline view calculation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Inline-view-calculation/m-p/178498#M45582</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That should be very easy in SAS as you can just replace the reference to the source dataset with an in-line query to add in the average.&lt;/P&gt;&lt;P&gt;Replace&lt;/P&gt;&lt;P&gt; &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;STRONG&gt;from costs.payroll&lt;/STRONG&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;with&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt; from (select *,mean(&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;salary) as &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;co_avg_salary&lt;/SPAN&gt; from costs.payroll) &lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other flavors of SQL might complain, but SAS will happily calculate the average and attach the same value to every observation.&amp;nbsp; You will see a note about needing to re-merge.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Feb 2014 22:22:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Inline-view-calculation/m-p/178498#M45582</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2014-02-18T22:22:26Z</dc:date>
    </item>
    <item>
      <title>Re: Inline view calculation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Inline-view-calculation/m-p/178499#M45583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tom,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From a computational/datastep-processing perspective does your in-line query calculate and re-calculate the co_avg_salary?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Feb 2014 22:27:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Inline-view-calculation/m-p/178499#M45583</guid>
      <dc:creator>cwcaulkins</dc:creator>
      <dc:date>2014-02-18T22:27:56Z</dc:date>
    </item>
    <item>
      <title>Re: Inline view calculation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Inline-view-calculation/m-p/178500#M45584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I assume that it will read all of the data once to find the mean and then need to read it again to begin processing the rest of the query.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Feb 2014 23:07:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Inline-view-calculation/m-p/178500#M45584</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2014-02-18T23:07:21Z</dc:date>
    </item>
    <item>
      <title>Re: Inline view calculation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Inline-view-calculation/m-p/178501#M45585</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Feb 2014 17:00:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Inline-view-calculation/m-p/178501#M45585</guid>
      <dc:creator>mdbenson</dc:creator>
      <dc:date>2014-02-20T17:00:18Z</dc:date>
    </item>
  </channel>
</rss>

