<?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 Advice on creating a cross tabulate-style table in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Advice-on-creating-a-cross-tabulate-style-table/m-p/735806#M229219</link>
    <description>&lt;P&gt;Hello, I created the following report on excel:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="crosstab.png" style="width: 986px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/58420i31FF7E1DB59940B7/image-size/large?v=v2&amp;amp;px=999" role="button" title="crosstab.png" alt="crosstab.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Complexity is in the first column and average business days based on complexity is in the second column.&lt;/P&gt;&lt;P&gt;The last five columns are numbered based on priority (4=highest priority 0=lowest priority) and the data is those columns are the average amount of business days based in priority.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to create a similar cross tabulate-style table using SAS, using this table named PriorityComplexity with different data:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="prioritycomplexity.png" style="width: 482px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/58421i5142B724683B7D28/image-size/large?v=v2&amp;amp;px=999" role="button" title="prioritycomplexity.png" alt="prioritycomplexity.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 20 Apr 2021 23:15:57 GMT</pubDate>
    <dc:creator>mreynaud</dc:creator>
    <dc:date>2021-04-20T23:15:57Z</dc:date>
    <item>
      <title>Advice on creating a cross tabulate-style table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Advice-on-creating-a-cross-tabulate-style-table/m-p/735806#M229219</link>
      <description>&lt;P&gt;Hello, I created the following report on excel:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="crosstab.png" style="width: 986px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/58420i31FF7E1DB59940B7/image-size/large?v=v2&amp;amp;px=999" role="button" title="crosstab.png" alt="crosstab.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Complexity is in the first column and average business days based on complexity is in the second column.&lt;/P&gt;&lt;P&gt;The last five columns are numbered based on priority (4=highest priority 0=lowest priority) and the data is those columns are the average amount of business days based in priority.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to create a similar cross tabulate-style table using SAS, using this table named PriorityComplexity with different data:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="prioritycomplexity.png" style="width: 482px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/58421i5142B724683B7D28/image-size/large?v=v2&amp;amp;px=999" role="button" title="prioritycomplexity.png" alt="prioritycomplexity.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Apr 2021 23:15:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Advice-on-creating-a-cross-tabulate-style-table/m-p/735806#M229219</guid>
      <dc:creator>mreynaud</dc:creator>
      <dc:date>2021-04-20T23:15:57Z</dc:date>
    </item>
    <item>
      <title>Re: Advice on creating a cross tabulate-style table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Advice-on-creating-a-cross-tabulate-style-table/m-p/735823#M229227</link>
      <description>&lt;P&gt;Take a look at Proc Report.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Post usable example data if you want a usable code answer.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Apr 2021 04:23:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Advice-on-creating-a-cross-tabulate-style-table/m-p/735823#M229227</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2021-04-21T04:23:12Z</dc:date>
    </item>
    <item>
      <title>Re: Advice on creating a cross tabulate-style table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Advice-on-creating-a-cross-tabulate-style-table/m-p/735825#M229229</link>
      <description>&lt;P&gt;Your "example" doesn't show "business days". So which of "priority days" or "complexity days" would be business days that need to be "averaged"?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For future reference, any "desired appearance" table should be possible to build with provided example data.&lt;/P&gt;
&lt;P&gt;And example data is best provided in the form of data step code such as:&lt;/P&gt;
&lt;PRE&gt;data have;
   input id $ x;
datalines;
abc   123
pdq   45.3
;&lt;/PRE&gt;
&lt;P&gt;I can't code from a picture.&lt;/P&gt;
&lt;P&gt;I am too lazy to type someone's data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Apr 2021 04:41:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Advice-on-creating-a-cross-tabulate-style-table/m-p/735825#M229229</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-04-21T04:41:14Z</dc:date>
    </item>
  </channel>
</rss>

