From: mark on
hello ,

i use the codes first to import from excel and second to convert
from .xls to .sas format .But I need to have the data in .dat
format.Kindly guide :-

(1)
PROC IMPORT OUT= WORK.MARCH
DATAFILE= "c:\Sas\MARCH.xls"
DBMS=EXCEL REPLACE;
SHEET="march$";
GETNAMES=YES;
MIXED=NO;
SCANTEXT=YES;
USEDATE=YES;
SCANTIME=YES;
RUN;

(2)
* convert the excel file into a SAS data file and put it into a
directory "c:\Sas"*
libname dis "c:\Sas";
proc import datafile="C:\Cwa\laptop_review.xls" out=dis.sales replace;
run
;

regards ,
markc
From: Emil on
On 2 Mar, 09:58, mark <mark.chas...(a)yahoo.in> wrote:
> hello ,
>
> i use the codes first to import from excel and second to convert
> from .xls to .sas format .But I need to have the data in .dat
> format.Kindly  guide :-
>
> (1)
>          PROC IMPORT OUT= WORK.MARCH
>             DATAFILE= "c:\Sas\MARCH.xls"
>             DBMS=EXCEL REPLACE;
>      SHEET="march$";
>      GETNAMES=YES;
>      MIXED=NO;
>      SCANTEXT=YES;
>      USEDATE=YES;
>      SCANTIME=YES;
> RUN;
>
> (2)
>        * convert the excel file into a SAS data file and put it into a
> directory "c:\Sas"*
> libname dis "c:\Sas";
> proc import datafile="C:\Cwa\laptop_review.xls" out=dis.sales replace;
> run
> ;
>
> regards ,
> markc

Hi

try this

data _null_;
set dis.sales;
file ' c:\Sas\dis.dat' ;
put _all_;
run;

Emil Jesio³kiewicz

 | 
Pages: 1
Prev: collin in SAS
Next: assigning keys