Hello,
I have 2 table that i need to do a search on. the first table is Laptop_Data which has the following fields:
Service_Tage Model MEMORY PS 2007 SP3 PC_Name PDF_Name Issued_To Supervisor Last_Tech_Stamp Notes
and the 2nd is Laptop_Repair with the following fields:
Date_In Technicians_Name Supervisor Problem_Category Reason_For_Repair Action_Completed Date_Picked-Up IT_Tech Completed Last_User_Stamp
I am trying to create a search screen that will allow me to search by Service_tag, Model, Memory, Supervisor from the 1st table and 3 more from the 2nd table Problem_Category, Completed, Date_In.
The 2 tables are joined together by Service_Tag number as it is the primary key.
I have tried to build the query to do the search but some search options work and others don't and when I add more LIKE "*" statements another portion will work but then others fail. HELP!
I was using the Like command in the format of: Like "*" & [Forms]![csearch]![Service_Tag] & "*"
and had a search screen with unbound forms that would use an event procedure which would then use the query to reutrn the results. I can't seem to get SQL to do it either, any ideas?
Thanks in advance.
I have 2 table that i need to do a search on. the first table is Laptop_Data which has the following fields:
Service_Tage Model MEMORY PS 2007 SP3 PC_Name PDF_Name Issued_To Supervisor Last_Tech_Stamp Notes
and the 2nd is Laptop_Repair with the following fields:
Date_In Technicians_Name Supervisor Problem_Category Reason_For_Repair Action_Completed Date_Picked-Up IT_Tech Completed Last_User_Stamp
I am trying to create a search screen that will allow me to search by Service_tag, Model, Memory, Supervisor from the 1st table and 3 more from the 2nd table Problem_Category, Completed, Date_In.
The 2 tables are joined together by Service_Tag number as it is the primary key.
I have tried to build the query to do the search but some search options work and others don't and when I add more LIKE "*" statements another portion will work but then others fail. HELP!
I was using the Like command in the format of: Like "*" & [Forms]![csearch]![Service_Tag] & "*"
and had a search screen with unbound forms that would use an event procedure which would then use the query to reutrn the results. I can't seem to get SQL to do it either, any ideas?
Thanks in advance.