Hi AlexF,
You can save the following script sample code in the "Script after Each File Imported" page in the
Import Wizard to save the filter (check Save Filter checkbox and Specify Advanced Filter Options"
checkbox in the last "Save Filter" page):
////////////////////////////
colnum=1; //Column# to be searched
findStr$="AA"; //Search text
for(ii=1; ii<=wks.maxRows; ii++) //Loop over rows
if(Find(wcol(colnum)[ii]$,findStr$,1)!=-1) //If string is found
for(jj=1; jj<=wks.nCols; jj++) wcol(jj)<ii>=1; //Mask the found row
////////////////////////////
You can customize the script for the column# to be searched, and the search string there.
Hope this helps.
--Hideo Fujii
OriginLab