Good morning
i m trying to write a macro that imports some csv files and then appends them
%macro import(start,end);
proc sql;
%do i=&start. %to &end.;
PROC IMPORT
DATAFILE="C\data&i..csv"
OUT=work.data&i. ;
run;
%END;
quit;
%mend;
%import(start=1, end=22)
It works
except for the fact that sometimes it imports some of the columns as text and some other as values , which means that the successive APPEND procedure fails because the columns are not the same
is there a way I can specify the informat for these 2 columns or alternatively import everything as text and then change it into my desired format once I have appended the file.
I understand this is due to the algorithm used to determine if a column is text or number used by sas
I have looked at the documentation for sas and I m not sure any of the option listed are relevant
Kind regards
A frustrated user !
Drop the proc import - this is a guessing procedure hence why you get different results.
Write a datastep import (you can use the output from the proc import to save time typing it all in). In this you can specify formats, informats, lengths, labels etc.
Using wildcard notation you can read all the csv files in one go. See:
Try GUESSINGROWS=MAX but I would strongly recommend using the data step approach.
Run a PROC IMPORT once, copy the code from the log. Make sure all types/formats are correct and use that inside your macro instead.
@Rickyboy wrote:
Good morning
i m trying to write a macro that imports some csv files and then appends them
%macro import(start,end);
proc sql;
%do i=&start. %to &end.;
PROC IMPORT
DATAFILE="C\data&i..csv"
OUT=work.data&i. ;
run;
%END;
quit;
%mend;
%import(start=1, end=22)
It works
except for the fact that sometimes it imports some of the columns as text and some other as values , which means that the successive APPEND procedure fails because the columns are not the same
is there a way I can specify the informat for these 2 columns or alternatively import everything as text and then change it into my desired format once I have appended the file.
I understand this is due to the algorithm used to determine if a column is text or number used by sas
I have looked at the documentation for sas and I m not sure any of the option listed are relevant
Kind regards
A frustrated user !
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!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.