473,419 Members | 1,533 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,419 software developers and data experts.

Help with microsoft access for making schedules

Here is the scenario. I have a list of people, what building they work
in, and on what days.

Is there a way in access to pull up this database and have it make a
list based only on the days, like select monday and everyone who works
on monday will be listed along with the building they work at on a
sheet to print out?

im a newbie to access but know a veteran amount about other office
products. any help at all would be greatly appreciated.

thanks in advance,

Ken Lafayette, Jr
Assistant Liaison
KAS Transportation

Dec 11 '05 #1
3 1541
It's hard to know how to advise you as you do not give much information
on the database you are working on. did you build it yourself? How
comfortable are you going into the database and looking at tables and
queries?

I'm guessing that all this information is all in the one table? Let's
call it "tblSchedule"

There are a number of ways of producing this information. Probably the
best way for you to do this would be to use a parametarised query:

SELECT
tblSchedule.Name,
tblSchedule.Building
FROM
tblSchedule
WHERE
tblSchedule.WeekDay = [Please enter a day];

Create a query from scratch (without the wizard) and go into the "SQL
view". Copy the above text in and adjust it so that the table name and
field names match whats in your database. When you open this query you
will be prompted for a day. Enter it, and all the matching records will
be displayed.

However, if the employee and building records are other tables, as they
should be in a well designed table schema, your query may look more
like this:

SELECT
tblEmployee.EmployeeName,
tblBuilding.BuildingName
FROM
(tblSchedule
INNER JOIN tblEmployee
on tblSchedule.EmployeeID = tblEmployee.EmployeeID)
INNER JOIN tblBuilding
on tblSchedule.BuildingID = tblBuilding.BuildingID
WHERE
tblSchedule.WeekDay = [Please enter a day];

So you see, it's quite hard to tell without knowing more about your
data structure. Can you tell us more?

Dec 12 '05 #2
i havent even created a database yet, so i can create it however is the
easiest way.

what data i have is just in a paper sheet now.

the data i have is:

a column of names, a column of buildings, and what days each person
works.

im not familiar with access that much, but i know a few things that are
very rookie.

Dec 12 '05 #3
I recommend you do some reading on database normalisation and
referential integrity before you start. Your table design and
relationships are your foundations and will shape how the entire
database operates (or doesnt!)

You are in a rare position to create an ap from scratch and if you do
your research now you will save yourself a LOT of heartache in the long
run. If you understand those two topics then you are in a great
position to create a database which will will not only be more
efficient and easier to use, but you will be able to expand it far
easier to grow to your needs

Dec 13 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: Simon Harvey | last post by:
Hi everyone, I need to make a service that monitors a directory for changes in the files contained within it. I have two questions: 1. I'm going to be using a FileSystemWatcher object to do...
6
by: Mike D | last post by:
I have a stored procedure that I am executing with this SQL osp_instrument_swap @InstrumentFrom = 'testname', @InstrumentIDTo = 37, @Schedules = '593, 594, 596, 598, 599, 600, 601, 602, 603, 604,...
6
by: stephane | last post by:
I am preparing an exam and I have a copy of last year exam. I answered the first questions and I wander if I am right or wrong. Can someone have a look at the questions and at my answers please?...
5
by: angelasg | last post by:
I am working with employee schedules. Each schedule is comprised of segments (shift, lunch, break, training, etc.) that have rankings. Each record has the employee id, the date the shift starts,...
1
by: Colm O'Hagan | last post by:
Hi there, I wonder if anyone out there can help me. I'm setting up a database at the moment for a manufacturing company. In my database I have a table listing all the company products; I have...
11
by: dhnriverside | last post by:
Hi peeps Ok, so I thought I'd have a go at making a console app in VS2k5... I haven't written any windows apps for years, let alone dos apps (been web programming) and I've hit a dumb error... ...
4
by: Jason Gillikin | last post by:
Here's the scenario. I'm building an integrated electronic health record for maternal/infant outpatient case management for my employer, a hospital. We are basing the EHR in Access 2003 (fully...
1
by: maverickman4 | last post by:
background/setup info: so we have a network set up of about 23 computers including our server which is running windows 2003 standard. we have an incredible amount of traffic going to that server due...
7
by: bhipwell via AccessMonster.com | last post by:
Hello, I have developed an employee benefits database that currently contains over 3000 employees and 70+ companies. Having started the database as a really simple solution for our clients, the...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.