There's a couple of approaches here.
One is to massage the file before import. If the import is rare, you might
do this by opening the csv in Notepad, and removing the offending lines
before import.
If importing is common, you could do that in VBA code. Open the file for
input, and another for output. Input each line, and Print the lines you want
to the output file. Then TransferText on the real file.
That's probably easier than importing it into a big flat table where all
fields are Text 255 with no validation, and then using an Append query to
write the valid records to your real table.

Signature
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.
> Hi,
>
[quoted text clipped - 11 lines]
>
> Any ideas on how to do this in VB (or via a query)?