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 (March 2006, week 5)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Wed, 29 Mar 2006 12:37:52 -0800
Reply-To:     "Mogens A. Krogh" <MKROGH@DSR.KVL.DK>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         "Mogens A. Krogh" <MKROGH@DSR.KVL.DK>
Organization: http://groups.google.com
Subject:      Re: from excel to sas, character variables
Comments: To: sas-l@uga.edu
Content-Type: text/plain; charset="iso-8859-1"

Try to change the mixed-option from 'NO' to 'YES' like in this example:

Regards, Mogens A. Krogh DVM, PhD-student www.kvl.dk

PROC IMPORT OUT= WORK.TEST DATAFILE= "P:\Filer\test.xls" DBMS=EXCEL REPLACE; SHEET="Ark1$"; GETNAMES=YES; MIXED=YES; <-----Change here!!! SCANTEXT=YES; USEDATE=YES; SCANTIME=YES; RUN;


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