LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (December 2005, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Thu, 8 Dec 2005 01:47:28 +0100
Reply-To:     Miguel de la Hoz <miguel_hoz@YAHOO.ES>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Miguel de la Hoz <miguel_hoz@YAHOO.ES>
Subject:      Re: line to long with ods pdf
In-Reply-To:  <200512080021.jB7LlWYS020446@mailgw.cc.uga.edu>
Content-Type: text/plain; charset=iso-8859-1

Hi all,

Sorry about my explanations, I read it again and it is not very clear...

The thing is that I am trying to adjust the lines of my file to the length of the paper but I don't get the final solutions. All the time, every line is splitted in two so the final report is not easy to follow.

I don't know if the solution is to use a letter smaller than before or to settle the width of the fields, I tried the solutions given by Ya Huang and I solve the case of getting a field in 2 parts but I still have each variable splitted.

Thanks for everything...

Miguel.

Ya Huang <ya.huang@AMYLIN.COM> escribió: Not exactly sure what you really need, the following is based on my guessing:

assuming x3 and x5 are the two variables which are too wide, then you can change the width by add style option:

proc print .. var x1 x2 x4 x6 x7; var x3 / style=[cellwidth=2in]; var x5 / style=[cellwidth=2in]; run;

On Thu, 8 Dec 2005 01:13:45 +0100, Miguel de la Hoz wrote:

>Hi all, > > I would appreciate to much if you have a little time to support me with ods sentence. > > I am trying to write an ods pdf, but the length of line is too long, two of the fields is a long description. > > Do you have any solution to get each observation in the same line. > > Many thanks in advance. > > ods pdf id=d3dstyle) style=D3d file="c:\grain-1.pdf"; >options nodate ; >title 'Proof'; >proc print data = total3 label noobs; >var x1 x2 x3 x4 x5 x6 x7; >run; >ods pdf close; > > >--------------------------------- > >Correo Yahoo! >Comprueba qué es nuevo, aquí >http://correo.yahoo.es

---------------------------------

Correo Yahoo! Comprueba qué es nuevo, aquí http://correo.yahoo.es


Back to: Top of message | Previous page | Main SAS-L page