<?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: Proc report | show group value in Each page starting in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-report-show-group-value-in-Each-page-starting/m-p/638665#M23925</link>
    <description>&lt;P&gt;do you have any character format for param that you can use&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;you need to create a format for param and use that as $sample.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Something like&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc format ;&lt;/P&gt;
&lt;P&gt;value sample&lt;/P&gt;
&lt;P&gt;'Body Weight (kg)'='Body Weight (kg)';&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;compute before gpxpage;&lt;BR /&gt;line @3 param $sample.;&lt;BR /&gt;endcomp;&lt;/P&gt;</description>
    <pubDate>Thu, 09 Apr 2020 13:44:07 GMT</pubDate>
    <dc:creator>Jagadishkatam</dc:creator>
    <dc:date>2020-04-09T13:44:07Z</dc:date>
    <item>
      <title>Proc report | show group value in Each page starting</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-report-show-group-value-in-Each-page-starting/m-p/638646#M23922</link>
      <description>&lt;P&gt;Hello Team,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to display one var value in each RTF page starting after one line blank line,&lt;/P&gt;&lt;P&gt;I would like show as per below screen shot on every page value is (Body Weight (kg))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="raja777pharma_0-1586433727510.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/38093iB4B53FB67AD502E7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="raja777pharma_0-1586433727510.png" alt="raja777pharma_0-1586433727510.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But my out put is getting as per below ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="raja777pharma_1-1586433779232.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/38094i3AD611B62A77499C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="raja777pharma_1-1586433779232.png" alt="raja777pharma_1-1586433779232.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using below code:&lt;/P&gt;&lt;P&gt;Note: The each page display value var is "param" .&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc Report data=report split='^' missing nowd spanrows headline headskip ;
	column gpxpage paramn param avisitn col1 gpx2 col2 col3 col4 col5 col6 col7  ;
	define gpxpage	/order order=internal "" noprint;
	define paramn	/group noprint;
    define param	/group noprint;
    define avisitn /group noprint;
    define gpx2	/group noprint;

	define col1 /&amp;amp;Header.     order order=internal  style(column)=[cellwidth=2.in font_face=&amp;amp;fontf font_size=&amp;amp;fontsz just=l asis=on] style(hdr)=[just=l asis=on] flow;
    define col2 /"Parameter"  order order=data  style(column)=[cellwidth=1in font_face=&amp;amp;fontf font_size=&amp;amp;fontsz just=l asis=on] style(hdr)=[just=l asis=on] flow;
    define col3 /"Statistics" order order=data  style(column)=[cellwidth=1in font_face=&amp;amp;fontf font_size=&amp;amp;fontsz just=l asis=on] style(hdr)=[just=l asis=on] flow;
	define col4 /&amp;amp;Header1.  order style(column)=[cellwidth=1in font_face=&amp;amp;fontf font_size=&amp;amp;fontsz just=c asis=on] style(hdr)=[just=c asis=on];
	define col5 /&amp;amp;Header2.  order style(column)=[cellwidth=1in font_face=&amp;amp;fontf font_size=&amp;amp;fontsz just=c asis=on] style(hdr)=[just=c asis=on];
    define col6 /&amp;amp;Header3.  order style(column)=[cellwidth=1in font_face=&amp;amp;fontf font_size=&amp;amp;fontsz just=c asis=on] style(hdr)=[just=c asis=on];
    define col7 /&amp;amp;Header7. order style(column)=[cellwidth=1in font_face=&amp;amp;fontf font_size=&amp;amp;fontsz just=c asis=on] style(hdr)=[just=c asis=on];

	break after gpxpage / page;

	compute before gpxpage;
        line " ";
    endcomp;

    compute after gpx2;
        line " ";
    endcomp;

    compute before _PAGE_ / left;
       length text1 $100;
       if _BREAK_=' ' then   do;
         text1="^{style[font_face=&amp;amp;fontf font_size=&amp;amp;fontsz}"||strip(param);
       end;
       line text1 $100.;
     endcomp;

run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 09 Apr 2020 12:05:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-report-show-group-value-in-Each-page-starting/m-p/638646#M23922</guid>
      <dc:creator>raja777pharma</dc:creator>
      <dc:date>2020-04-09T12:05:17Z</dc:date>
    </item>
    <item>
      <title>Re: Proc report | show group value in Each page starting</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-report-show-group-value-in-Each-page-starting/m-p/638657#M23923</link>
      <description>&lt;P&gt;I updated the code as below, please try&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;CODE class=" language-sas"&gt;compute before gpxpage;
        line @3 param;
    endcomp;&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc Report data=report split='^' missing nowd spanrows headline headskip ;
	column gpxpage paramn param avisitn col1 gpx2 col2 col3 col4 col5 col6 col7  ;
	define gpxpage	/order order=internal "" noprint;
	define paramn	/group noprint;
    define param	/group noprint;
    define avisitn /group noprint;
    define gpx2	/group noprint;

	define col1 /&amp;amp;Header.     order order=internal  style(column)=[cellwidth=2.in font_face=&amp;amp;fontf font_size=&amp;amp;fontsz just=l asis=on] style(hdr)=[just=l asis=on] flow;
    define col2 /"Parameter"  order order=data  style(column)=[cellwidth=1in font_face=&amp;amp;fontf font_size=&amp;amp;fontsz just=l asis=on] style(hdr)=[just=l asis=on] flow;
    define col3 /"Statistics" order order=data  style(column)=[cellwidth=1in font_face=&amp;amp;fontf font_size=&amp;amp;fontsz just=l asis=on] style(hdr)=[just=l asis=on] flow;
	define col4 /&amp;amp;Header1.  order style(column)=[cellwidth=1in font_face=&amp;amp;fontf font_size=&amp;amp;fontsz just=c asis=on] style(hdr)=[just=c asis=on];
	define col5 /&amp;amp;Header2.  order style(column)=[cellwidth=1in font_face=&amp;amp;fontf font_size=&amp;amp;fontsz just=c asis=on] style(hdr)=[just=c asis=on];
    define col6 /&amp;amp;Header3.  order style(column)=[cellwidth=1in font_face=&amp;amp;fontf font_size=&amp;amp;fontsz just=c asis=on] style(hdr)=[just=c asis=on];
    define col7 /&amp;amp;Header7. order style(column)=[cellwidth=1in font_face=&amp;amp;fontf font_size=&amp;amp;fontsz just=c asis=on] style(hdr)=[just=c asis=on];

	break after gpxpage / page;

	compute before gpxpage;
        line @3 param;
    endcomp;

    compute after gpx2;
        line " ";
    endcomp;

run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 09 Apr 2020 13:11:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-report-show-group-value-in-Each-page-starting/m-p/638657#M23923</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2020-04-09T13:11:37Z</dc:date>
    </item>
    <item>
      <title>Re: Proc report | show group value in Each page starting</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-report-show-group-value-in-Each-page-starting/m-p/638663#M23924</link>
      <description>&lt;P&gt;Hello ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;it's not working and showing error as below&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ERROR: PARAM must use a character format.&lt;BR /&gt;ERROR: PARAM must use a character format.&lt;BR /&gt;ERROR: PARAM must use a character format.&lt;BR /&gt;ERROR: PARAM must use a character format.&lt;BR /&gt;ERROR: PARAM must use a character format.&lt;BR /&gt;ERROR: PARAM must use a character format.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My data is like below&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="raja777pharma_0-1586439400846.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/38096iC5067A415D48D715/image-size/medium?v=v2&amp;amp;px=400" role="button" title="raja777pharma_0-1586439400846.png" alt="raja777pharma_0-1586439400846.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Apr 2020 13:37:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-report-show-group-value-in-Each-page-starting/m-p/638663#M23924</guid>
      <dc:creator>raja777pharma</dc:creator>
      <dc:date>2020-04-09T13:37:16Z</dc:date>
    </item>
    <item>
      <title>Re: Proc report | show group value in Each page starting</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-report-show-group-value-in-Each-page-starting/m-p/638665#M23925</link>
      <description>&lt;P&gt;do you have any character format for param that you can use&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;you need to create a format for param and use that as $sample.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Something like&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc format ;&lt;/P&gt;
&lt;P&gt;value sample&lt;/P&gt;
&lt;P&gt;'Body Weight (kg)'='Body Weight (kg)';&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;compute before gpxpage;&lt;BR /&gt;line @3 param $sample.;&lt;BR /&gt;endcomp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Apr 2020 13:44:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-report-show-group-value-in-Each-page-starting/m-p/638665#M23925</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2020-04-09T13:44:07Z</dc:date>
    </item>
    <item>
      <title>Re: Proc report | show group value in Each page starting</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-report-show-group-value-in-Each-page-starting/m-p/638683#M23926</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's not&amp;nbsp; working as you mentioned i applied format but it didn't worked&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="raja777pharma_0-1586442525066.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/38098i6E8A9A65EA56774D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="raja777pharma_0-1586442525066.png" alt="raja777pharma_0-1586442525066.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="raja777pharma_1-1586442538400.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/38099i46D4B10A7F69F14D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="raja777pharma_1-1586442538400.png" alt="raja777pharma_1-1586442538400.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Apr 2020 14:29:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-report-show-group-value-in-Each-page-starting/m-p/638683#M23926</guid>
      <dc:creator>raja777pharma</dc:creator>
      <dc:date>2020-04-09T14:29:11Z</dc:date>
    </item>
  </channel>
</rss>

