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 (October 2009, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Tue, 27 Oct 2009 22:49:27 -0700
Reply-To:   shiva <shiva.saidala@GMAIL.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   shiva <shiva.saidala@GMAIL.COM>
Organization:   http://groups.google.com
Subject:   Re: Exclude first 2 rows in Proc Import step
Comments:   To: sas-l@uga.edu
Content-Type:   text/plain; charset=windows-1252

Hi,

Try this..

DATA test;

INFILE ‘c: \test\temp.xls’ DELIMITER='*' MISSOVER DSD FIRSTOBS=3 ; INPUT ID name $; Run;

Thanks, shiva


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