|
You need to use a format that is wide enough to display the value as you desire.
Format SUMCNT f4.; /* is just wide enough */
F3. produces the result you are seeing.
This program could be used to demonstrate how format W effects the
values of your variable SUMCNT.
options nocenter;
data work.test;
Sumcnt = 3E3;
length showFormatWidth ShowEwidth $10;
do w = 1 to 10;
showFormatWidth = putn(sumcnt,'F',w);
ShowEwidth = putn(sumcnt,'E',w);
output;
end;
run;
proc print;
run;
On 11/6/06, Suthakar Iyer <suthakariyer@yahoo.com> wrote:
> Hi,
> Sumcnt = 3E3 ;
> how to format this variable with out the scientific notations.
>
> Thanks
> Suthakar
>
>
> ---------------------------------
> Want to start your own business? Learn how on Yahoo! Small Business.
>
|