|
I have a data step infile, input statements, which i want to convert to
fopen(),fread(),fget() functions.
the data statements are:
infile topics pad dsd notab dlm='09'x;
input topic $ @@;
when i try
%let topics=%sysfunc(fopen(&tref,s,,v));
%sysfunc(fread(&topics));
%sysfunc(fget(&topics,var));
only the first record is read, after then fread() produces end of file
warning.
Is there a way of using functions to read such a file? (which is
filename(tref,excel|system!topics,dde) )
--
You can't escape addiction - choose yours carefully.
|