Search results

  1. M

    Query duplicates data

    I tried that. Makes no difference at all, exactly the same result as with INNER JOIN :/
  2. M

    Query duplicates data

    Hello all, Created a query based on one table, this table has few 1-many relationships. Query works as it should be until I replace FK numbers with texts from related table. It works for all table but one. When I add table T_area query starts to duplicate records, but only in the query, doesn't...
  3. M

    link 2 databases

    1. I know, but until now my main table was T_qa to record incidents, and If I remove relationship between user and this table how will it work? Remember that not all records from T_qa will have assigned task to T_task, so how will my location work (department, area, equipment)?? 2. Other...
  4. M

    link 2 databases

    Is this correct then? thanks
  5. M

    link 2 databases

    if I follow this, would I get where I supposed to be with my relationships? https://www.youtube.com/watch?v=SpMyGlEInGs But then my main table would store text i.e. Department, Area & equipment, instead of as currently numbers: 1,2,5, ...etc which I thought takes less space (for each record)
  6. M

    link 2 databases

    obviously, it's something I am not familiar with. Can you please step by step me?
  7. M

    link 2 databases

    I am still trying to understand your suggestion. The reason I have this "double" relationship is I need cascading combo hence relationship between T_department - T_Area - T_equipment) and also need to store values of this location in table T_qa (hence relationship T_qa-T_department & T_qa-T_area...
  8. M

    DoCmd.OpenForm, multiple criteria in WHERE clause

    Shoji, this didn't work, after clicking on the button nothing has happened. Thanks I will just stick to my working version.
  9. M

    DoCmd.OpenForm, multiple criteria in WHERE clause

    strWhereTaskCompleted = "tTaskCompleted = False" is looking for records without close date, (looking for nulls)
  10. M

    DoCmd.OpenForm, multiple criteria in WHERE clause

    made it! another question: Is that even possible to have a "where statement" in DoCmd.openreport.... with values from combo and if combo is blank? or is above code the only way of dealing with combos with selected value and nulls?
  11. M

    DoCmd.OpenForm, multiple criteria in WHERE clause

    I managed to get this working: But I don't know how to convert it into the DOCMD.... , I'm struggling with quotation marks.
  12. M

    link 2 databases

    1. create query and add all tables? or only T_task and T_qa? 2. what do i do with it afterwards? 3. how serious this problem is (1-10) 4. if I dont do it, what would be next step in creating/editing new table for TASKs? thanks
  13. M

    DoCmd.OpenForm, multiple criteria in WHERE clause

    sorry for digging out, what to do if nothing selected in either of the combos but still want to see whatever there is based only single combo? DoCmd.OpenReport "R_printTask", acPreview, , _ "tTaskCompleted = False And tUserFK = " & Me!cboMyActionsUser & " Or qaAreaFK = '" & Me!cboMyActionsArea...
  14. M

    link 2 databases

    ok then, but how?
  15. M

    link 2 databases

    Not really, as I mentioned in my previous post, user can enter a record into main table T_qa, without linking and creating record in table T_task. So how would user determine location (T_department, T_area)? Therefore the existing TASK table wont work, as table doesnt allow user to enter new...
  16. M

    link 2 databases

    This is how it works: User enters data into T_qa Each record in this table must have the following: -UserID (to track who reported it) -Location: T_department, T_area, T_equipment (to track where it happened) -all other tables on right hand side of the relationship image posted...
  17. M

    link 2 databases

    what if instead of creating another table, I would modify my current table T_Task, so user can add tasks without relating it to T_qa?
  18. M

    link 2 databases

    Guys, lets just drop it who's more right thing.. If I create separate table in the existing DB, can link it directly to T_area & T_equipment?
  19. M

    link 2 databases

    here is ful view if we have any quality problems, we report it to the T_QA table, then to prevent this happening in the future we create a TASKs, which are always related to 1 record in the QA table. Current layout been developed with help of Gina, on this forum. Therefore I strongly believe...
Back
Top Bottom