LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous (more recent) messageNext (less recent) messagePrevious (more recent) in topicNext (less recent) in topicPrevious (more recent) by same authorNext (less recent) by same authorPrevious page (September 2009, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Sun, 20 Sep 2009 17:58:42 +0100
Reply-To:     Phil Holland <news@HOLLANDNUMERICS.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Phil Holland <news@HOLLANDNUMERICS.COM>
Organization: Holland Numerics Ltd
Subject:      Re: SAS gplot to Powerpoint(PPT)
Comments: To: sas-l@uga.edu
Content-Type: text/plain;charset=us-ascii

Aj,

You could try to trick Powerpoint into thinking it has a PPT file, but give it an HTML file instead, by using ODS HTML3 (or ODS HTML for SAS 8.2):

ODS HTML3 FILE="graphics.ppt" STYLE=;

PROC GPLOT .........

ODS HTML3 CLOSE;

This works OK for single graphs, producing single slide presentations, but I've not tried it for multiple graphs to multiple slides.

..........Phil

In message <8fbbb896-23d8-4145-9d6d-fe48b7808430@m11g2000vbl.googlegroups.com>, Aj <ajeetsubramanian@gmail.com> writes >Hi All > >I am trying to move the results of gplot to a powerpoint , Is it >feasible ? I have been able to do so , to a pdf file and further have >been able to positon the graph on the pdf with horigin and vorign >options? > >1. Is it possible to move the results directly from gplot to >Powerpoint? >2. Can the location of the graphs be adjusted in the powerpoint ? > >The sample data : > Obs Name Sex Age Height Weight > > 1 Alfred M 14 69.0 112.5 > 2 Alice F 13 56.5 84.0 > 3 Barbara F 13 65.3 98.0 > 4 Carol F 14 62.8 102.5 > 5 Henry M 14 63.5 102.5 > 6 James M 12 57.3 83.0 > 7 Jane F 12 59.8 84.5 > 8 Janet F 15 62.5 112.5 > 9 Jeffrey M 13 62.5 84.0 > 10 John M 12 59.0 99.5 > 11 Joyce F 11 51.3 50.5 > 12 Judy F 14 64.3 90.0 > 13 Louise F 12 56.3 77.0 > 14 Mary F 15 66.5 112.0 > 15 Philip M 16 72.0 150.0 > 16 Robert M 12 64.8 128.0 > 17 Ronald M 15 67.0 133.0 > 18 Thomas M 11 57.5 85.0 > 19 William M 15 66.5 112.0 > >Thanks >Aj

-- -------------------------------------------------------- Holland Numerics Ltd 94 Green Drift, Royston, Herts SG8 5BT, UK mobile : +44-(0)7714-279085 email : <NEWS@hollandnumerics.com> URL : http://www.hollandnumerics.com/ --------------------------------------------------------


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