Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: mm2ha
  • Order by date
  1. mm2ha

    Access table not importing into the right fields

    Ok, thanks a lot! I have just changed it, but I have to wait for the new data to arrive. But hopefully it will work just fine, as I have changed the import positions. Thanks again for your help!
  2. mm2ha

    Access table not importing into the right fields

    This should be it: For Each itm In objInboxItems 'check the Inbox for mail with your keyword 'if subject is correct and is not marked for deletion let's work with this mail item ' mark the email message as read If (InStr(UCase(itm.Subject), "More Student Inquiries from...
  3. mm2ha

    Access table not importing into the right fields

    Unfortunately, that did not help. The importing is still putting the values into Program. even though now the structure of the access table is this: Name Gender Gpa Date Call Program What could be the problem? Could it be caused by that the Call in the access table is a checkbox...
  4. mm2ha

    Access table not importing into the right fields

    Hi, I have an access database and I import data to it automatically from a csv which comes to my email. However, the fields do not import to the ones they are supposed to and thats the problem which I have right now. The structure of the csv is this: Name Gender Gpa Date Call The...
  5. mm2ha

    implementing keyword search in database of books

    It is just a column in the table. It should be correctly LastName_1 or something like that. They just called it like that(whoever created the database)
  6. mm2ha

    implementing keyword search in database of books

    That worked pretty well. However, when I want to use the new created column FullName (I used the concatenation for creating new column) it gives me this error: Invalid column name 'KEY'. Invalid column name 'FullName'. This is my query: SELECT Title, [Last Name - 1], [First Name - 1], ([Last...
  7. mm2ha

    implementing keyword search in database of books

    is there a way how I could join at first all the columns in one row into one long string, then perform the search on it and then return the table again in unchanged form? Example: Title Author ----- ------ sql mm and the search would be perfomed on the string "sqlmm" Thanks a lot!
  8. mm2ha

    implementing keyword search in database of books

    In the keyword, the search should be lookng thorough all the fields in the database(title, authors name, call number,...). The results should be ordered by the number of words of the search phrase whithin the row in the table. So for example, when the user searches for "dan brown angels and...
  9. mm2ha

    implementing keyword search in database of books

    Hi everybody, I am having a problem with figuring out how to best implement a keyword search in a database of books(I have to create a web interface for the search). I dont know how to create the search query, to get the most relevant results. For example if I would use WHERE CONTAINS and then...

Part and Inventory Search

Back
Top