Hi,
In Import Wizard tool, under Header Lines page, uncheck the box Auto Determine Header Lines, make sure Number of Main header lines and subheader lines are both set to 0. Go all the way to last page, use the following script in Script After Each File Imported.
James
range r1 = col(A);
n = r1.getSize();
ns = lookup("ELUSTART", r1, data(1,n));
wks.deleteRows(1,ns+1);
n = r1.getSize();
ns = lookup("ELUSTOP", r1, data(1,n));
wks.deleteRows(ns-1,n-ns+2);