<?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: Value keeps repeating after each break in PROC Report in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Value-keeps-repeating-after-each-break-in-PROC-Report/m-p/976056#M378250</link>
    <description>&lt;P&gt;Thank you.&amp;nbsp; I will give that a try and let you know the result.&lt;/P&gt;</description>
    <pubDate>Tue, 30 Sep 2025 18:47:22 GMT</pubDate>
    <dc:creator>jlwatts</dc:creator>
    <dc:date>2025-09-30T18:47:22Z</dc:date>
    <item>
      <title>Value keeps repeating after each break in PROC Report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Value-keeps-repeating-after-each-break-in-PROC-Report/m-p/976024#M378246</link>
      <description>&lt;P&gt;Question.&amp;nbsp; I have existing code that I am trying to update.&amp;nbsp; It has the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;The report is setup as:&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;FONT color="#0000ff"&gt;PROC REPORT Data=Enroll_intl;&lt;BR /&gt;COLUMN college_desc1 NATION_OF_CITIZENSHIP_DESC break_group level group academic_period_Desc, (Heads fte) Fall2017 Fall2018 ChangeNo ChangePct Fall2017fte Fall2018fte ftechangeno ftechangepct;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;And it has break setup as:&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;FONT color="#0000ff"&gt;break after NATION_OF_CITIZENSHIP_DESC &amp;nbsp;/ summarize dol dul style=[fontweight=bold];&lt;BR /&gt;COMPUTE after NATION_OF_CITIZENSHIP_DESC ;&lt;BR /&gt;NATION_OF_CITIZENSHIP_DESC=' ';&lt;BR /&gt;level='9';&lt;BR /&gt;ENDCOMP;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;Is there a way to not have the college repeated with each break?&amp;nbsp; The user has the output in excel format.&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&lt;FONT color="#0000ff"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Report with Repeating Breaks.png" style="width: 602px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/110250i8372969C27A09609/image-size/large?v=v2&amp;amp;px=999" role="button" title="Report with Repeating Breaks.png" alt="Report with Repeating Breaks.png" /&gt;&lt;/span&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 30 Sep 2025 16:38:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Value-keeps-repeating-after-each-break-in-PROC-Report/m-p/976024#M378246</guid>
      <dc:creator>jlwatts</dc:creator>
      <dc:date>2025-09-30T16:38:29Z</dc:date>
    </item>
    <item>
      <title>Re: Value keeps repeating after each break in PROC Report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Value-keeps-repeating-after-each-break-in-PROC-Report/m-p/976053#M378248</link>
      <description>&lt;P&gt;Complete procedure code and example input data in the form of a working data step will probably get a workable solution faster.&lt;/P&gt;
&lt;P&gt;Complete code is needed because other pieces may be the cause of undesired output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is that example of actual output or desired output? If not of desired output then show what the desired appearance is.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Sep 2025 18:03:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Value-keeps-repeating-after-each-break-in-PROC-Report/m-p/976053#M378248</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2025-09-30T18:03:14Z</dc:date>
    </item>
    <item>
      <title>Re: Value keeps repeating after each break in PROC Report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Value-keeps-repeating-after-each-break-in-PROC-Report/m-p/976055#M378249</link>
      <description>&lt;P&gt;It would be helpful to see your code and how you are defining the variables on the Column statement. However, if you want to not repeat college_desc1 at the BREAK line, you can try the following:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;compute college_desc1;
if upcase(_break_)='NATION_OF_CITIZENSHIP_DESC' then college_desc1=' ';
endcomp;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 30 Sep 2025 18:38:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Value-keeps-repeating-after-each-break-in-PROC-Report/m-p/976055#M378249</guid>
      <dc:creator>Kathryn_SAS</dc:creator>
      <dc:date>2025-09-30T18:38:45Z</dc:date>
    </item>
    <item>
      <title>Re: Value keeps repeating after each break in PROC Report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Value-keeps-repeating-after-each-break-in-PROC-Report/m-p/976056#M378250</link>
      <description>&lt;P&gt;Thank you.&amp;nbsp; I will give that a try and let you know the result.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Sep 2025 18:47:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Value-keeps-repeating-after-each-break-in-PROC-Report/m-p/976056#M378250</guid>
      <dc:creator>jlwatts</dc:creator>
      <dc:date>2025-09-30T18:47:22Z</dc:date>
    </item>
    <item>
      <title>Re: Value keeps repeating after each break in PROC Report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Value-keeps-repeating-after-each-break-in-PROC-Report/m-p/976064#M378251</link>
      <description>&lt;P&gt;That worked.&amp;nbsp; I thank you for your time and effort.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Sep 2025 19:16:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Value-keeps-repeating-after-each-break-in-PROC-Report/m-p/976064#M378251</guid>
      <dc:creator>jlwatts</dc:creator>
      <dc:date>2025-09-30T19:16:01Z</dc:date>
    </item>
    <item>
      <title>Re: Value keeps repeating after each break in PROC Report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Value-keeps-repeating-after-each-break-in-PROC-Report/m-p/976070#M378252</link>
      <description>That is the current output. I would like to not list the college name on&lt;BR /&gt;each total line.&lt;BR /&gt;</description>
      <pubDate>Tue, 30 Sep 2025 19:23:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Value-keeps-repeating-after-each-break-in-PROC-Report/m-p/976070#M378252</guid>
      <dc:creator>jlwatts</dc:creator>
      <dc:date>2025-09-30T19:23:02Z</dc:date>
    </item>
  </channel>
</rss>

