Page 3 of 3 FirstFirst 123
Results 31 to 35 of 35
  1. #31
    DHFE is offline Novice
    Windows 10 Office 365
    Join Date
    Oct 2023
    Posts
    15

    Quote Originally Posted by mike60smart View Post
    Have you even looked at the example Db that Bert uploaded?
    Bert? Is there another upload or did you mean Bob?

    Yes, I looked at that, it had a few tables in it - I'd already got to this point myself.

    Quote Originally Posted by mike60smart View Post
    Ok then you surely have enough information supplied to create a database?
    If I did then I wouldn't be asking questions on how to do something would I? Are you even reading my posts?

  2. #32
    Join Date
    May 2018
    Location
    Living in Scotland UK
    Posts
    1,566
    I have been reading and from Bob's example database I modified it slightly so that the table fields are as follows.

    Then I created a query as follows:-

    Code:
    SELECT tblEmp.EmpID, tblDept.Dept, tblJobs.JobTitle, [FName] & " " & [LName] AS Employee, tblEmp.Active, tblCerts.Cert, tblEmpCerts.DateCompleted, tblCerts.ValForMonths, DateAdd("m",[ValForMonths],[DateCompleted]) AS ExpiresFROM ((tblDept RIGHT JOIN tblEmp ON tblDept.DeptID = tblEmp.DeptID) LEFT JOIN tblJobs ON tblDept.DeptID = tblJobs.DeptID) LEFT JOIN (tblCerts RIGHT JOIN tblEmpCerts ON tblCerts.CertID = tblEmpCerts.CertID) ON tblEmp.EmpID = tblEmpCerts.EmpID
    WHERE (((tblEmp.Active)=True));
    This produces the following results:-
    Attached Thumbnails Attached Thumbnails ER.jpg   Expires.jpg  
    You can PM me if you need further help.
    Good Reading https://docs.microsoft.com/en-gb/off...on-description

  3. #33
    Micron is online now Virtually Inert Person
    Windows 10 Access 2016
    Join Date
    Jun 2014
    Location
    Ontario, Canada
    Posts
    12,801
    All the users really need to know is; who does or doesn't have a specific certification, and when they are about to expire. It doesn't need to be more complicated than a list of people, certificates and dates.
    Unless I've forgotten something it seems you have what you need to take the next step, which would be to design tables, create the relationships and post a pic of that if you want feedback (or post your empty tables, or tables with fake data in them).
    The more we hear silence, the more we begin to think about our value in this universe.
    Paraphrase of Professor Brian Cox.

  4. #34
    DHFE is offline Novice
    Windows 10 Office 365
    Join Date
    Oct 2023
    Posts
    15
    Sorry for the delay, was given some actual work that had a short deadline.

    I'm past the creation of tables, and I've created several queries which show different date ranges of all certificates (I.E. Expired, 30 days to expiry, 60 days to expiry, 90 days to expiry)

    What I need to know now is;
    how to allow the user to select a specific certificate to get a list of everyone who has or hasn't got a completion date for that certificate (view information)
    similarly have the user select an employee and see all the certificates they have or haven't got a completion date for (view information)
    And also allowing the user to manipulate the data - adding/removing/updating employees/certificate information etc

  5. #35
    CarlettoFed is online now Competent Performer
    Windows 7 64bit Access 2013 32bit
    Join Date
    Dec 2019
    Posts
    257
    In the attachment you can see an example.
    StaffCerts 01.zip

Page 3 of 3 FirstFirst 123
Please reply to this thread with any new information or opinions.

Similar Threads

  1. VBA Tutorials
    By jmitchelldueck in forum Access
    Replies: 2
    Last Post: 07-17-2015, 03:50 PM
  2. Any good tutorials
    By data808 in forum Access
    Replies: 6
    Last Post: 10-19-2013, 02:29 PM
  3. Good resources for tutorials?
    By JPP in forum Reports
    Replies: 5
    Last Post: 02-25-2013, 09:39 AM
  4. vba books/tutorials
    By bigmac in forum Access
    Replies: 1
    Last Post: 03-10-2012, 02:05 PM
  5. Vba tutorials
    By Evgeny in forum Programming
    Replies: 1
    Last Post: 05-02-2010, 08:46 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums