Recent content by bees292

  1. B

    Many-to-Many Query problem

    what a div! I was changing the join type in the overall relationship not for the query. Join 2 works. Thanks for your help rickster
  2. B

    Many-to-Many Query problem

    Yes, records show up if and only if they have an experiment record. But to me this doesn't make any sense as 'Experiments' doesn't enter into the query. A join of type 2 between papers and experiments doesn't resolve this problem
  3. B

    Many-to-Many Query problem

    Sorry, I'm having a bit of trouble understanding this. The join types can be set as 1,2 or 3. Could someone suggest which I might try for the relationship structure given above.... Thanks
  4. B

    Many-to-Many Query problem

    Thanks that's helpful.... This is correct. I'm new to this and I'm not sure what you are refering to. Are you talking about the join types? again, not sure exactly what you mean here.
  5. B

    Many-to-Many Query problem

    Hi. I have a many-to-many relationship set up which seems to be working fine. I have now created a query that requests criteria from a form (See gif for relationship and query design). The problem is that when i put in details for the first record the query works. however, for any other record...
  6. B

    One annoying duplicate record problem!!!

    selecting unique records in query design solved, sorry.
  7. B

    One annoying duplicate record problem!!!

    Ok this is still a problem. 3 tables: Authors, Papers, Join. Authors ------- AuthorID AuthorName Papers -------- PaperID Title etc (unimportant fields) Join ---- AuthorID PaperID Authors and Papers relate to Join in one to many. Join type 1 in each case. Join table fields set to 'duplicates...
  8. B

    Adding wildcard character to query criteria

    That works well. Thank you very much!
  9. B

    Adding wildcard character to query criteria

    I thought you couldn't use Is Null with Like?
  10. B

    Adding wildcard character to query criteria

    Yes I have tried that. The difference between that and the one above is that the 'Like.... & "*"' doesn't include null records. This is what I want it to do: 3 fields (for now) Field A Field B Field C If I enter text into fields A and B I want it to search using criteria for just those...
  11. B

    Adding wildcard character to query criteria

    I've got a query that does exactly what this chap got his to do. However I want to add a "*" character to the criteria to allow for searches with partial matches. Here's the criteria that works: [title]=[Forms].[Search]![Title] Or [Forms].[Search]![Title] Is Null However when I try the...
  12. B

    SubForm requery from seperate form

    I figured out that this was due to me not including fields from the Join table in the search query. And in fact the requery of the subform was unnecessary.
  13. B

    SubForm requery from seperate form

    Three Crow, Do you want information about the original Query the subform is based on or the Search query that I want it to requery/refresh/change record source to? At the moment the main form is based on qPapers. The subform is based on qAuthors. Authors and Papers are linked in a many to...
  14. B

    SubForm requery from seperate form

    Do you mean in the query 'qSearch'?
  15. B

    SubForm requery from seperate form

    Hi. Having a bit of a problem getting a subform to requery/refresh after running a query from a seperate form. The seperate form is acting as a 'search form' and running query qSearch. I've tried various things (requery the form, subform etc) but here is the code I'm currently using: Private...
Back
Top Bottom