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 gkittelson 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. TnGranny

    Symbols in data skew results of query

    Hi Dawn - If you have nothing joined by the offending text field and no selections based on this field, then it's necessary to see the SQL to determine problem. If you have joins on this field, then the "+" made this field not match corresponding fields in the joined table(s) and...
  2. TnGranny

    Postcodes/Zip table

    Hi Petzl - How about separating the 9-position postal codes into a table called "Addreses". The postal code could be the key and the fields would be StreetAddress; City; State; and, if there is info that is particular to a suburb other than city and state, SuburbID. Then your...
  3. TnGranny

    Creating a copy of table data

    Build a Customer table which has customer name, address, contact, phone, email (or whatever information you need about customers that doesn't change from job to job.) Put "Customer ID" as a non-key field in the Quote table with allowable value of null. On the form where you enter new...
  4. TnGranny

    Tricky table format

    Create three SELECT queries from your new table that group employees by: 1) country 2) country and organization 3) country, organization and site Make COUNT as one of the output fields in these queries. Create another query that joins the new table with these 3 queries. COUNT is the...
  5. TnGranny

    New Customer ID into multiple tables

    To void using VB you can 1) Create an append query with an outer join on CustomerID from tblCustomers to tblOtherTable1. Add selection criteria on the CustomerID field in tblOtherTable1 to select records when it "is null". Append records from tblCustomers to tblOtherTable1. 2) Create...
  6. TnGranny

    Query to Complex

    I get this error when trying to perform a 1) a compare in an IIF statement between a numeric and non-numeric field, 2) a calculation using a non-numeric field and 3) a selection based on dates. The offending field, which Access looks at as non-numeric (or "non-date"), always comes...
  7. TnGranny

    Query Problems using DateDiff function

    FYI ON DATEDIFF FUNCTION: If the result is over 999, it returns 0. Workaround is Format(DateDiff("d",[BegDate],[EndDate]),"0000") This is in Office XP. I don't believe I used datediff in previous version of Access so it may be okay in them.

Part and Inventory Search

Back
Top