Date: Mon, 11 Dec 2006 06:04:30 -0500
Reply-To: Gerhard Hellriegel <gerhard.hellriegel@T-ONLINE.DE>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Gerhard Hellriegel <gerhard.hellriegel@T-ONLINE.DE>
Subject: Re: proc report displays only 1st caharacter
Try to add some options to your definition section:
define wre/display left width=3 format=$3.;
Hope that helps,
Gerhard
On Mon, 11 Dec 2006 02:51:03 -0800, avi <aviben@BEZEQINT.NET.IL> wrote:
>Hello,
>
>I have a data set with one variable "WRE".
>
>When printing to HTML with proc report, the column WRE displays only
>the first character of the values.
>Proc print displays correctly.
>
>The code:
>
>data dddYo;
>attrib wre length=$20.;
>set dddYouDim;
>
> PROC REPORT data=dddYo nowd headline headskip ;
> column (wre);
> define _all_/display center;
> define wre/display left;
>
> proc print data=dddYo;
>
>
>Please help understanding what it is going on
>Avi
|