data want;
infile "&path\sample.csv"
delimiter = ','
missover
firstobs = 2
DSD
lrecl = 32767;
format IP $15.;
format date yymmdd10.;
format time hhmm.;
format zone $5.;
format cik $7.;
format accession $20.;
format extension $30.;
format code $3.;
format size 10.;
input
IP $
date
time
zone $
cik $
accession $
extension $
code $
size
;
run;
What will this code does? Can anyone Explain?
I was trying to replace variable names in the CSV file is this correct and I don't want to use Replace.