Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

making report for specif data

Status
Not open for further replies.

khanny608

Technical User
Nov 7, 2000
15
GB
i am a beginner at access and really need some help.
i am try to make a database that allows you to put in specific dates and then it creates a report for that period of time.
the form should have the following fields
beginning date_______
finish date__________
view report

as i am an ameture i would be gratfull if you could give a step by step guide on doing this
i will be etternally grateful


the tables in the database are:
Employee

employeeid
name
surname
address



lecure

lectureid
module
course


Timming

Start time
finishtime
Date

i want to be able to see a report showing the empoyee and the lecture they are at for the dates that i type in
 
Since this is an old thread, have you gotten your answer yet? If not, let me know. It is easiest to use a parameter query, I'll give more details if you need them.
 
Your current Timing table does not show how you are linking the records to the other tables. What's the primary key?

From your previous thread, your lecture table needs to include all available lectures along with the dates and times. Your Timing table needs to be redesigned as an Enrollment table.

tblEnrollment

Recordnum (Primary Key, autonumber)
Employeeid (Joined to the employee table)
Lectureid (Joined to the lecture table)

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top