Recent content by imellor

  1. I

    Enter value in a form, run query and display result on form

    Thank you, I knew there would be a simple solution. That saved me some work. Ian
  2. I

    Use of Count in query

    Thank you, I can see the logic now, but initially, it was not what I expected.
  3. I

    Use of Count in query

    Just that it is in two columns Sorry, I meant SQL Ian
  4. I

    Enter value in a form, run query and display result on form

    I'm a beginner at Access, but the one thing I have leant is there is often a very simple way of doing a task if you know how. So before I start looking at VBA and DAO commands. Is there an easy way of entering a value in a text box, passing to a query to do a count function and then return...
  5. I

    Use of Count in query

    Dale Thank you, as you have probably guessed I'm new to access. Your SQL brings up something I didn't expect in design view, I think I will probably be better off concentrating on writing SGL!!! Thank you Ian
  6. I

    Use of Count in query

    I have created a query in design view which has generated this SQL: SELECT [ACD-C-DataSourceExport].Field2 FROM [ACD-C-DataSourceExport] GROUP BY [ACD-C-DataSourceExport].Field2 HAVING ((([ACD-C-DataSourceExport].Field2) Like "2313*")); This works fine and returns all 265 records bginning...
  7. I

    How do I join tables using a link table in a form?

    All Thanks for all your assistance, I finally got it working. Either I or Access was getting confused by having the same field name for ID in several tables. I have now made them unique and got it all working.
  8. I

    How do I join tables using a link table in a form?

    Richard Thanks for your encouragement, I am getting closer. Can I check I am selecting the correct tables for the subform? If I have the following three tables, which hopefully will be self explanatory... tblPerson tblLink tblGroup When I add the subform, I am selecting fields from both...
  9. I

    How do I join tables using a link table in a form?

    Thank you , but I have done the relationships (I think!!) Ian
  10. I

    How do I join tables using a link table in a form?

    Aggghhh why is Access sooo difficult. Rather than amending the example database, I thought I would learn more from starting from scratch using the example database as a guide. I have added the tables and set the relationships ,however as usual the forms are a PTA.. I added a form with a...
  11. I

    How do I join tables using a link table in a form?

    Richard Thank you, I spent quite some time scouring the web looking for some guidance, but couldn't find any. This download is ideal, as I can dissect and see how it is done. Thank you very much. Ian
  12. I

    How do I join tables using a link table in a form?

    Richard Thank you, I follow the logic. However I thought as it is possible for a person to have a role in multiple groups, I would need an intermediate table to form a many to many relationship? This is what I have set up, but I can't my head around how to set up updating the data in a form...
  13. I

    How do I join tables using a link table in a form?

    Thank you. I have attached the spreadsheet with anonmylised minimal information. There is one tab for Group and one tab for people Regards Ian
  14. I

    How do I join tables using a link table in a form?

    Hi All I'm a newbie at access, I believe I understand the basics of relational databases and queries, but I am really stuck on an issue. I have been asked to maintain a directory for our local Scout district. It's currently in a spreadsheet, but is crying out to be a database. Here is what I...
  15. I

    Using a form to amend the search criteria of a query and display results in the form?

    Thank you, I've realised what I was doing wrong with my command button, I have added the =dlookup to the onlick event. The only thin, I'm not sure about now, is if I should be pointing to a query at all, should I do the query in the onclick event as well? Regards Ian
Back
Top Bottom