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 (June 2007, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Tue, 19 Jun 2007 03:18:13 -0400
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: error while importing file in sas

Have a look into your EXCEL file: is that true what SAS says? Maybe you could try DDE, if you want to extract a certain area of that file. Mark it in EXCEL and go in SAS to the menu pint "Solutions - Tools" (could be other, I have only german SAS here and don't know how they translated that). There you find something like "DDE Triplet". That you can copy (CTRL-C) and paste it into a filename like

filename xx DDE "---here the triplet ----";

Then you can read the file with

data a; infile xx; input a b c; run; Gerhard

On Mon, 18 Jun 2007 23:56:11 -0700, hipul <hipull@GMAIL.COM> wrote:

>While trying to import an excel file into sas, i get the following >error: "Unable to sample external file-no records exist in the first 5 >records" > >hipul


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