<?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: Modifying Column Name Properties in a Table in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Modifying-Column-Name-Properties-in-a-Table/m-p/702936#M215337</link>
    <description>Thank you for this &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;, it worked great!</description>
    <pubDate>Tue, 01 Dec 2020 23:57:49 GMT</pubDate>
    <dc:creator>steeleye</dc:creator>
    <dc:date>2020-12-01T23:57:49Z</dc:date>
    <item>
      <title>Modifying Column Name Properties in a Table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Modifying-Column-Name-Properties-in-a-Table/m-p/702921#M215325</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am currently trying to display statistical data in a table for a series of ANOVA tests. Per the instructions from our professor, we are being asked to display the column labels at the bottom of the row, such as:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="steeleye_0-1606863842602.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/52230i7BF3806CC5B5BC9E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="steeleye_0-1606863842602.png" alt="steeleye_0-1606863842602.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, it seems like SAS automatically positions the labels to the top of the row. So, my table is displaying as:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="steeleye_1-1606863888940.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/52231i22338355E262EECF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="steeleye_1-1606863888940.png" alt="steeleye_1-1606863888940.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I format the table so "Variable" and "P-Value" are positioned at the bottom of the row?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Tue, 01 Dec 2020 23:07:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Modifying-Column-Name-Properties-in-a-Table/m-p/702921#M215325</guid>
      <dc:creator>steeleye</dc:creator>
      <dc:date>2020-12-01T23:07:35Z</dc:date>
    </item>
    <item>
      <title>Re: Modifying Column Name Properties in a Table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Modifying-Column-Name-Properties-in-a-Table/m-p/702927#M215328</link>
      <description>&lt;P&gt;You need to show the code you are currently using to display the table before we can suggest any modifications.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Post code by copying from your editor and pasting into a code box opened with either the &amp;lt;/&amp;gt; or "running man" icons at the top of the message box.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Dec 2020 23:23:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Modifying-Column-Name-Properties-in-a-Table/m-p/702927#M215328</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-12-01T23:23:49Z</dc:date>
    </item>
    <item>
      <title>Re: Modifying Column Name Properties in a Table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Modifying-Column-Name-Properties-in-a-Table/m-p/702928#M215329</link>
      <description>For default output from a proc that would be a pain.&lt;BR /&gt;&lt;BR /&gt;If you're displaying your own tables, then you can control it a bit more. Please expand on what your requirements are in detail.</description>
      <pubDate>Tue, 01 Dec 2020 23:25:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Modifying-Column-Name-Properties-in-a-Table/m-p/702928#M215329</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-12-01T23:25:19Z</dc:date>
    </item>
    <item>
      <title>Re: Modifying Column Name Properties in a Table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Modifying-Column-Name-Properties-in-a-Table/m-p/702929#M215330</link>
      <description>&lt;P&gt;Here is the code I am currently using to generate the table, where ANOVAResuts contains variables Dependent FValue ProbF.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;TITLE1 "Analysis of Variance Results";&lt;BR /&gt;FOOTNOTE1 "Created by Name";&lt;BR /&gt;PROC PRINT DATA = ANOVAResults&lt;BR /&gt;LABEL&lt;BR /&gt;SPLIT = '/'&lt;BR /&gt;OBS = 'Variable';&lt;BR /&gt;VAR Dependent FValue ProbF;&lt;BR /&gt;LABEL Dependent = 'Variable/Name'&lt;BR /&gt;FValue = 'F/Statistic'&lt;BR /&gt;ProbF = 'P-Value';&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;TITLE;&lt;BR /&gt;FOOTNOTE;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Dec 2020 16:28:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Modifying-Column-Name-Properties-in-a-Table/m-p/702929#M215330</guid>
      <dc:creator>steeleye</dc:creator>
      <dc:date>2020-12-10T16:28:04Z</dc:date>
    </item>
    <item>
      <title>Re: Modifying Column Name Properties in a Table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Modifying-Column-Name-Properties-in-a-Table/m-p/702932#M215333</link>
      <description>&lt;P&gt;You will need to provide a style override that looks like:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Var&amp;nbsp;&amp;nbsp;&amp;nbsp;Dependent FValue ProbF / style=[vjust=bottom];&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is if you want to provide exactly the same style overrides to all the variables.&lt;/P&gt;
&lt;P&gt;You can use a separate Var statement for different variables to provide different overrides. The order of the columns would be left to right from the order of the Var statements from top to bottom.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Dec 2020 23:48:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Modifying-Column-Name-Properties-in-a-Table/m-p/702932#M215333</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-12-01T23:48:07Z</dc:date>
    </item>
    <item>
      <title>Re: Modifying Column Name Properties in a Table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Modifying-Column-Name-Properties-in-a-Table/m-p/702936#M215337</link>
      <description>Thank you for this &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;, it worked great!</description>
      <pubDate>Tue, 01 Dec 2020 23:57:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Modifying-Column-Name-Properties-in-a-Table/m-p/702936#M215337</guid>
      <dc:creator>steeleye</dc:creator>
      <dc:date>2020-12-01T23:57:49Z</dc:date>
    </item>
  </channel>
</rss>

