BookmarkSubscribeRSS Feed
Nupur20
Calcite | Level 5

Hi,

I am trying to import multiple excel files using the code below. There is a column in each excel file that has both numeric and text values but proc import is only importing numeric values, and put the text values as blank ('.').

Can anyone help with me this issue. I would greatly appreciate your time and suggestions.

%let subdir=S:\Temp\; 

filename dir "&subdir.*.xls";

data new;

length filename  fname $ 32767;

infile dir  eof=last filename=fname;

input ;

last: filename=fname;

run;

proc sort data=new nodupkey;

by filename;

run;

data null;

set new end=last;

call symputx(cats('filename',_n_),filename);

call symputx(cats('dsn',_n_),scan(scan(filename,7,'\'),1,'.'));

if last then call symputx('nobs',_n_);

run;

%put &nobs;

%macro import;

%do i=1 %to &nobs;

proc import datafile="&&filename&i" out=&&dsn&i

dbms=excel replace;

sheet = "Sheet1";

getnames=yes;

mixed=yes;

run;

%end;

%mend import;

%import

1 REPLY 1
1zmm
Quartz | Level 8

Look at the SAS documentation for PROC IMPORT.  Specifying a larger value in its new option, GUESSINGROWS, may solve this problem for you.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 1602 views
  • 0 likes
  • 2 in conversation