database set up

  • Thread starter Thread starter AB
  • Start date Start date
A

AB

Hello

I want to create a database to replace a currently handwritten form which is
completed by employees each day.

They enter - Their Name - Today's Date and the details of each client they
see

When entered I would like to be able to retrieve:
All clients for one day
All clients for one employee

I am hoping to set this up using a form for emplyees to complete

I'm used to setting up basic tables - my question is - how do I create as
form where the employee's name and todays date are linked and the records
for each client seen by that preson on that day are stored together?

any help gratefully received


AB
 
Have an employee table with a key field.

Create an Appointments table like--
Employee -
ApptDate - DateTime - default to =Now()
Client -

Set a relations from Employee table one-to-many Appointments.
Create main form for employee.
Create subform, datasheet, Master-Child links on employee.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top