Hi,
I am have an Excel table that I have successfully imported in to a table, How ever the last few lines will always have heading information that will always be the same. One line starts with "Client", the 2nd line starts with "Confidential" and the third line starts with "Generated". So I figured that I could look for these and just delete lines that start with these words. However, nothing that I have done so far works.
If anyone has an idea I would appreciate it.
Thank you
Here is my code:
Code:SELECT Left(tblTemp_Import_File.ID,6) AS test FROM tblTemp_Import_File WHERE tblTemp_Import_File.[ID] Like ("Client%") Or Like ("Confidential%") Or Like ("Generated%") Or Like ("Meritain%");