<?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 How to consolidate multiple day entries into aggregates. (Similar to Excel Pivot Tables) in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/How-to-consolidate-multiple-day-entries-into-aggregates-Similar/m-p/781291#M31751</link>
    <description>&lt;P&gt;Hello, I have a dataset with 30k observations. I currently do this operation in excel PivotTables every week but I would love to automate this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The dataset looks something like this: (I can't show the actual dataset for privacy reasons)&lt;/P&gt;&lt;PRE&gt;date | location | dosages | other_columns_i_want_to_ignore&lt;BR /&gt;...
11/17/21 | A | 3
11/17/21 | B | 2&lt;BR /&gt;11/17/21 | C | 80
11/18/21 | A | 1
11/18/21 | B | 5&lt;BR /&gt;11/18/21 | C | 3
11/19/21 | A | 3
11/19/21 | B | 10&lt;BR /&gt;11/19/21 | C | 1&lt;BR /&gt;...&lt;/PRE&gt;&lt;P&gt;I would like to consolidate this into a table like this:&lt;/P&gt;&lt;PRE&gt;location | dosages |
A | 7
B | 17&lt;BR /&gt;C | 84&lt;/PRE&gt;&lt;P&gt;Thanks again for all your help!&lt;/P&gt;</description>
    <pubDate>Fri, 19 Nov 2021 16:00:46 GMT</pubDate>
    <dc:creator>heyyou1</dc:creator>
    <dc:date>2021-11-19T16:00:46Z</dc:date>
    <item>
      <title>How to consolidate multiple day entries into aggregates. (Similar to Excel Pivot Tables)</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-consolidate-multiple-day-entries-into-aggregates-Similar/m-p/781291#M31751</link>
      <description>&lt;P&gt;Hello, I have a dataset with 30k observations. I currently do this operation in excel PivotTables every week but I would love to automate this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The dataset looks something like this: (I can't show the actual dataset for privacy reasons)&lt;/P&gt;&lt;PRE&gt;date | location | dosages | other_columns_i_want_to_ignore&lt;BR /&gt;...
11/17/21 | A | 3
11/17/21 | B | 2&lt;BR /&gt;11/17/21 | C | 80
11/18/21 | A | 1
11/18/21 | B | 5&lt;BR /&gt;11/18/21 | C | 3
11/19/21 | A | 3
11/19/21 | B | 10&lt;BR /&gt;11/19/21 | C | 1&lt;BR /&gt;...&lt;/PRE&gt;&lt;P&gt;I would like to consolidate this into a table like this:&lt;/P&gt;&lt;PRE&gt;location | dosages |
A | 7
B | 17&lt;BR /&gt;C | 84&lt;/PRE&gt;&lt;P&gt;Thanks again for all your help!&lt;/P&gt;</description>
      <pubDate>Fri, 19 Nov 2021 16:00:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-consolidate-multiple-day-entries-into-aggregates-Similar/m-p/781291#M31751</guid>
      <dc:creator>heyyou1</dc:creator>
      <dc:date>2021-11-19T16:00:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to consolidate multiple day entries into aggregates. (Similar to Excel Pivot Tables)</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-consolidate-multiple-day-entries-into-aggregates-Similar/m-p/781292#M31752</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc summary data=have nway;
    class location;
    var dosages;
    output out=want sum=;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 19 Nov 2021 16:02:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-consolidate-multiple-day-entries-into-aggregates-Similar/m-p/781292#M31752</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-11-19T16:02:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to consolidate multiple day entries into aggregates. (Similar to Excel Pivot Tables)</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-consolidate-multiple-day-entries-into-aggregates-Similar/m-p/781294#M31753</link>
      <description>That works amazing! Thank you &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;, you have been a lifesaver these past few days.</description>
      <pubDate>Fri, 19 Nov 2021 16:06:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-consolidate-multiple-day-entries-into-aggregates-Similar/m-p/781294#M31753</guid>
      <dc:creator>heyyou1</dc:creator>
      <dc:date>2021-11-19T16:06:57Z</dc:date>
    </item>
  </channel>
</rss>

