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 MikeeOK 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: *

  1. Laurel92

    Query with multiple parameters some can be blank

    The whole thing was built with the query designer including the first zip. When I try adding a second zip to equal a [Org_Postal_Cd_Txt] that is when I get no records.
  2. Laurel92

    Query with multiple parameters some can be blank

    I must have copied the wrong query, here it is. SELECT tbl_Org_Name.Name, tbl_Org_Address.Org_Address_txt, tbl_Org_City.Org_City_Txt, tbl_Org_Address.Org_Phone_txt, tbl_Org_Address.Org_Fax_txt, tbl_Sol_Prefix.Solicitor_prefx_txt, [Solicitor] AS Expr1, tbl_Solicitor.Sol_First_txt FROM...
  3. Laurel92

    Query with multiple parameters some can be blank

    Here is the code that works (Adds 1 person to any org within 1 zip code. What I want is to be able to do the same thing with 1 OR more zip codes. My code for adding a second zip doesn't work either. (even if zips match) SELECT tbl_Org_Name.Name, tbl_Org_Address.Org_Address_txt...
  4. Laurel92

    Query with multiple parameters some can be blank

    SELECT tbl_Org_Name.Name, tbl_Org_Address.Org_Address_txt, tbl_Org_City.Org_City_Txt, tbl_Org_Address.Org_Phone_txt, tbl_Org_Address.Org_Fax_txt, tbl_Solicitor.Sol_First_txt, [Zip2] AS Expr2, [Zip3] AS Expr3 FROM tbl_Org_Name INNER JOIN (tbl_Org_Address INNER JOIN tbl_Org_City ON...
  5. Laurel92

    Query with multiple parameters some can be blank

    I want to make a query which accepts 1 to 3 zip codes as input, zip2 and zip3 I want to be able to leave blank. Currently it gives me an empty report. Can someone HELP?? please. T

Part and Inventory Search

Back
Top