<?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 Proc Computab - move item list to the left in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Proc-Computab-move-item-list-to-the-left/m-p/730114#M38431</link>
    <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Will_FBB_0-1617131720879.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/56674i56483F2CD16CCDB4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Will_FBB_0-1617131720879.png" alt="Will_FBB_0-1617131720879.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;how do I move item list above to the left instead of sitting in between numbers.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc computab data=rpt_data cspace=1 CWIDTH=4 ;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;columns act bud var ytdact ytdbud ytdvar /&lt;BR /&gt;/*zero=' '*/;&lt;BR /&gt;columns act--var / format=negparen14.0 mtitle="- Month to Date: &amp;amp;mon_char -" ;&lt;BR /&gt;columns ytdact--ytdvar / format=negparen14.0 mtitle='- Year To Date -';&lt;BR /&gt;columns act ytdact / 'Actual' f=negparen14.0;&lt;BR /&gt;columns bud ytdbud / 'Budget' f=negparen14.0;&lt;BR /&gt;columns var ytdvar / 'Var' f=negparen14.0;&lt;BR /&gt;columns act--ytdvar / '-';&lt;BR /&gt;columns ytdact / _titles_;&lt;/P&gt;&lt;P&gt;retain curmo &amp;amp;mon_num; /* current month: February */&lt;BR /&gt;rows x1 / ' '&lt;BR /&gt;' Item 1';&lt;BR /&gt;rows x2 / ' Item 2' ;&lt;BR /&gt;rows x3/ ' Item 3' ;&lt;BR /&gt;rows x4 / ' Item 4' ;&lt;BR /&gt;rows x5/ ' Item 5' ;&lt;BR /&gt;rows x6/ ' Item 6' ;&lt;BR /&gt;rows x7/ ' Item 7' ;&lt;/P&gt;&lt;P&gt;rows subtotal/ ' Subtotal' ul;&lt;BR /&gt;&lt;BR /&gt;rows total/ ' Total' dul ;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;act = type = 'Actual' &amp;amp; month(rpt_dt) = curmo;&lt;BR /&gt;bud = type = 'Budget' &amp;amp; month(rpt_dt) = curmo;&lt;BR /&gt;ytdact = type = 'Actual' &amp;amp; month(rpt_dt) &amp;lt;= curmo;&lt;BR /&gt;ytdbud = type = 'Budget' &amp;amp; month(rpt_dt) &amp;lt;= curmo;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;rowcalc:&lt;BR /&gt;&lt;BR /&gt;subtotal=x3+x4+x5+x6+x7;&lt;BR /&gt;total=x1+x2+subtotal;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;colcalc:&lt;BR /&gt;var = act-bud;&lt;BR /&gt;ytdvar=ytdact-ytdbud;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 30 Mar 2021 19:15:31 GMT</pubDate>
    <dc:creator>Will_FBB</dc:creator>
    <dc:date>2021-03-30T19:15:31Z</dc:date>
    <item>
      <title>Proc Computab - move item list to the left</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Proc-Computab-move-item-list-to-the-left/m-p/730114#M38431</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Will_FBB_0-1617131720879.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/56674i56483F2CD16CCDB4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Will_FBB_0-1617131720879.png" alt="Will_FBB_0-1617131720879.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;how do I move item list above to the left instead of sitting in between numbers.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc computab data=rpt_data cspace=1 CWIDTH=4 ;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;columns act bud var ytdact ytdbud ytdvar /&lt;BR /&gt;/*zero=' '*/;&lt;BR /&gt;columns act--var / format=negparen14.0 mtitle="- Month to Date: &amp;amp;mon_char -" ;&lt;BR /&gt;columns ytdact--ytdvar / format=negparen14.0 mtitle='- Year To Date -';&lt;BR /&gt;columns act ytdact / 'Actual' f=negparen14.0;&lt;BR /&gt;columns bud ytdbud / 'Budget' f=negparen14.0;&lt;BR /&gt;columns var ytdvar / 'Var' f=negparen14.0;&lt;BR /&gt;columns act--ytdvar / '-';&lt;BR /&gt;columns ytdact / _titles_;&lt;/P&gt;&lt;P&gt;retain curmo &amp;amp;mon_num; /* current month: February */&lt;BR /&gt;rows x1 / ' '&lt;BR /&gt;' Item 1';&lt;BR /&gt;rows x2 / ' Item 2' ;&lt;BR /&gt;rows x3/ ' Item 3' ;&lt;BR /&gt;rows x4 / ' Item 4' ;&lt;BR /&gt;rows x5/ ' Item 5' ;&lt;BR /&gt;rows x6/ ' Item 6' ;&lt;BR /&gt;rows x7/ ' Item 7' ;&lt;/P&gt;&lt;P&gt;rows subtotal/ ' Subtotal' ul;&lt;BR /&gt;&lt;BR /&gt;rows total/ ' Total' dul ;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;act = type = 'Actual' &amp;amp; month(rpt_dt) = curmo;&lt;BR /&gt;bud = type = 'Budget' &amp;amp; month(rpt_dt) = curmo;&lt;BR /&gt;ytdact = type = 'Actual' &amp;amp; month(rpt_dt) &amp;lt;= curmo;&lt;BR /&gt;ytdbud = type = 'Budget' &amp;amp; month(rpt_dt) &amp;lt;= curmo;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;rowcalc:&lt;BR /&gt;&lt;BR /&gt;subtotal=x3+x4+x5+x6+x7;&lt;BR /&gt;total=x1+x2+subtotal;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;colcalc:&lt;BR /&gt;var = act-bud;&lt;BR /&gt;ytdvar=ytdact-ytdbud;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Mar 2021 19:15:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Proc-Computab-move-item-list-to-the-left/m-p/730114#M38431</guid>
      <dc:creator>Will_FBB</dc:creator>
      <dc:date>2021-03-30T19:15:31Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Computab - move item list to the left</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Proc-Computab-move-item-list-to-the-left/m-p/730120#M38433</link>
      <description>&lt;P&gt;Which item list?&lt;/P&gt;
&lt;P&gt;Between which numbers?&lt;/P&gt;</description>
      <pubDate>Tue, 30 Mar 2021 15:32:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Proc-Computab-move-item-list-to-the-left/m-p/730120#M38433</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-03-30T15:32:15Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Computab - move item list to the left</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Proc-Computab-move-item-list-to-the-left/m-p/730161#M38434</link>
      <description>&lt;LI-SPOILER&gt;Item 1 - 7, subtotal, total on the report output.&lt;/LI-SPOILER&gt;</description>
      <pubDate>Tue, 30 Mar 2021 18:03:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Proc-Computab-move-item-list-to-the-left/m-p/730161#M38434</guid>
      <dc:creator>Will_FBB</dc:creator>
      <dc:date>2021-03-30T18:03:19Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Computab - move item list to the left</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Proc-Computab-move-item-list-to-the-left/m-p/730201#M38436</link>
      <description>&lt;P&gt;Have you tried moving the ROWS to above where the summaries are calculated? i.e. "before"?&lt;/P&gt;</description>
      <pubDate>Tue, 30 Mar 2021 20:32:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Proc-Computab-move-item-list-to-the-left/m-p/730201#M38436</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-03-30T20:32:59Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Computab - move item list to the left</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Proc-Computab-move-item-list-to-the-left/m-p/730209#M38437</link>
      <description>&lt;P&gt;yes, I have. It didn't do anything.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Mar 2021 21:28:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Proc-Computab-move-item-list-to-the-left/m-p/730209#M38437</guid>
      <dc:creator>Will_FBB</dc:creator>
      <dc:date>2021-03-30T21:28:56Z</dc:date>
    </item>
  </channel>
</rss>

