Search results

  1. A

    Relationship Diagram

    I realy do not see a need in a tblalbumtrack unless you are trying to mix the same tracks in the different albums and tracks are independent of the album. I am pretty much sure that this is not the case. Make the Albumid go directly to the tbltracks as a FK.
  2. A

    table design analysis needed

    I think there is a redundancy in keys Location>Facility>Room>tblclass all of them 1-M relationship while in your structure tblroom has redundant key - Facid tblclass has 2 redundant keys - Facid, Locid
  3. A

    Dlookup in Query

    So what is the problem ? Pull two tables link them by job number, leave the PK field from the first table and order details fields from the second table, run query ,check if everything correct and then create "make table query" out of it. Then add the new field to the newly created table and set...
  4. A

    Transfer records in a field to another field

    You want to extract the PO box information from a certain field and then place into another field?
  5. A

    Need help with a query

    Is this what you needed ?
  6. A

    2 questions concerning multiple tables

    For both questions yes. 1. use find unmatched query. 2. use append query.
  7. A

    how to use IF fun in Query

    if = iif in Access
  8. A

    hi all, i am a newbie, any kind heart help me? Plese, please

    Here is db that checks as well if there is an overlap, Thank you Pat, The first time I saw the "composite key" was in JDEdwards which is not a relational dbase but I thought that this is the common pratice. Pat, do you have any good examples of composite key usage? Best regards Alexei ( he ) :)
  9. A

    hi all, i am a newbie, any kind heart help me? Plese, please

    I used a composite key for this look in design of the form
  10. A

    Linking one combo box to another in a form

    Create two combo's, the query behind the second combo will have a criterea eq to value in first combo. Then on change event of the first combo place a code : me.combo2.requery
  11. A

    Count applicants

    It is possible if you do it in two steps first you will create a query that will group the year and the applicant name SELECT Format([yourdatefield],"yyyy") AS [Year], (yourtable.yourapplicantname) AS [Name], FROM yourtable GROUP BY Format([yourdatefield],"yyyy"), yourtable.yourapplicantname...
  12. A

    Count applicants

    SELECT Format([yourdatefield],"yyyy") AS [Year], Count(yourtable.yourapplicantname) AS CountOfApplicant, yourtable.yourapplicantname FROM yourtable GROUP BY Format([yourdatefield],"yyyy"), yourtable.yourapplicantname; this query counts how many times applicant applied for courses within the...
  13. A

    counting records

    First, why your query gives you duplicate records? Are they really duplicates ? You can prevent this by going to SQL mode of a query and typing after the Select - distinct. so that SQL would look like Select distinct ............
  14. A

    Pherical tracking on workstations

    Not sure but: Parent (P) Child (C) "Subsection" is P to "CostCenter" C "CostCenter" is P to "Employee" C "Employee" is P to "Workstation" C "Workstation" is P to "Equipmentuse" C "Equipment" is P to "Equipmentuse" C Cost Center number is already a unigue number no need for Autonumber. Pass...
  15. A

    Need help in making a query to sort out information

    You are actually seeking on a number field (mission_ID) which is probably linked to some other table where your identification text is stored with unique number. If so then there are couple of ways. You can go to that table, add new field which will indicate what type of value is it (training...
  16. A

    Launching a Second Form

    Can you post a db?
  17. A

    Query problem

    You need to create the runningsum query and then subtract the results from the total value
  18. A

    Chellenging Schedule Pre-empting Query...impossible?

    Hello bmiller You can use Union select query Syntax for union select is following: Select yourfield From yourtable where(((yourcritirea)) Union select your field From yourtable (((yourcritirea)); Here is live example: SELECT distinct Table1.Field1 FROM Table1 WHERE (((Mid([field1],1,2)) Not...
  19. A

    Confusing query - Criteria to only display current bookinds.

    try this: >FormatDateTime(Now(),4)
  20. A

    Need help in making a query to sort out information

    Create new query, then go to the sql view of it and replace the code with this code: SELECT distinct Yourtable.Yourfield FROM Yourtable WHERE (((Mid([yourfield],1,2)) Not In ("Ae","Be","Fe","Ge","He","Me","Pe","Te","Ve","Xe","Ze","Au","Bu","Fu","Gu","Hu","Mu","Pu","Tu","Vu...
Back
Top Bottom