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 (August 1998)Back to main SPSSX-L pageJoin or leave SPSSX-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Sat, 1 Aug 1998 23:57:11 -0500
Reply-To:   "Steven J. Pierce" <sjp@MYNE.COM>
Sender:   "SPSSX(r) Discussion" <SPSSX-L@UGA.CC.UGA.EDU>
From:   "Steven J. Pierce" <sjp@MYNE.COM>
Organization:   Michigan State University
Subject:   Re: SPSS TO SAS
Content-Type:   text/plain; charset=us-ascii

Annette Towler wrote: > > How do I transfer an SPSS file into SAS? Thanks.

Use SPSS Save As command and change the file type to .POR to create a portable file. Here's example SAS code to read in a SPSS portable file.

filename proj "E:\SJP\CLASSES\REGRESSION\PROJECT\PROJECT.POR"; proc convert spss=proj out=project; run;

-- Steven J. Pierce


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