Date: Mon, 8 Nov 2010 17:29:52 -0600
Reply-To: "Data _null_;" <iebupdte@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "Data _null_;" <iebupdte@GMAIL.COM>
Subject: Re: Proc Report: Problem with long footnotes created using
compute statement
In-Reply-To: <149877.71924.qm@web57005.mail.re3.yahoo.com>
Content-Type: text/plain; charset=windows-1252
Does this work?
compute after _page_ / style = [font_size=9pt] left;
line '03'x "S={borderrightstyle=none borderbottomstyle=none
borderleftstyle=none}Note: "
"Percents used in this table are column percents. Fisher’s
Exact test was used"
" when more than 20% of cells for a comparison had expected
frequencies less "
"than 5. The 'Married/Partners' category in the table
represents a combination "
"of the Married and Domestic Partners categories from the
previous table and the "
"'Other' category represents a combination of all other categories.";
endcomp;
On Mon, Nov 8, 2010 at 5:21 PM, Paul Miller <pjmiller_57@yahoo.com> wrote:
> Hello Everyone,
>
> I am using a compute statement in Proc Report to place a long footnote in a cell at the bottom of various tables. I've pasted an example of this below.
>
> As written, the code produces the footnote I want in the table. In the syntax editor though, it runs way off the page as a very long single line of text. I had thought I could just hit enter at various places so that I could see the whole footnote in the syntax editor, but then the footnote doesn't display correctly in the table anymore. Instead, I wind up with a bunch of blank spaces at various places in the footnote that I don't want.
>
> So I'm just wondering if there is any way to have the entire footnote be visible in the syntax editor and to get the footnote to display properly in the table.
>
> Thanks,
>
> Paul
>
>
> compute after _page_ / style = [font_size=9pt] left;
> line "^S={borderrightstyle=none borderbottomstyle=none borderleftstyle=none}Note: Percents used in this table are column percents. Fisher’s Exact test was used when more than 20% of cells for a comparison had expected frequencies less than 5. The 'Married/Partners' category in the table represents a combination of the Married and Domestic Partners categories from the previous table and the 'Other' category represents a combination of all other categories.";
> endcomp;
>
>
>
|