Set dc = db.FTSearch( ("FIELD dtitle CONTAINS " & tTitle And “FIELD dauthor CONTAINS” & tAuthor(0)), 0)
With this formula, I got type mismatch, but I separate the script to run for each field, it didn’t have error. Anything wrong with this. Please help. Thanks
You have to make the AND word part of the string like Set dc = db.FTSearch( (“FIELD dtitle CONTAINS " & tTitle & " And FIELD dauthor CONTAINS” & tAuthor(0)), 0)