473,396 Members | 1,666 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,396 software developers and data experts.

Need help

Hello,

I am a novice with MS Access so I want to apologize ahead of time with
the fact that I know very little about Access.

I have an Access database that keeps track of volunteers and assigns
them out to specific events(this is a high end entertainment center).
They of course have volunteers that come in for specific events who
donate their time and they are generally assigned to take tickets,
tend bar, serve as ushers at various doors. Each volunteer has been
assigned job codes, some have 1 job code and some have several job
codes...depending on the experience they have had. Such as ticket
takers we have a code of TT, ushers the code is US, etc. Now I have
to produce a Roster report and on the report I have to list the
various locations such as for ushers where they would be assigned
to.....such as Left Lobby Door and a Right Lobby Door, Mezzanine both
Left and Right, Grand Tier Right and Left....etc. The number of
ushers they assign to each of these locations is dependant on the
house size....for instance a house size 1 would only assign 1 usher to
Lobby Left and 1 usher to Lobby Right, where a house size 2 would
assign 2 ushers to Lobby Left and 2 ushers to Lobby Right and so
forth....we go up to house size 6. I have used different queries and
subReports but still have not be able to solve the problem. I have
been pulling my hair out!!!!!

Can anyone help me with this problem?

Doris

Mar 26 '07 #1
3 1658
On Mar 26, 6:25 pm, Dori...@aol.com wrote:
Hello,

I am a novice with MS Access so I want to apologize ahead of time with
the fact that I know very little about Access.

I have an Access database that keeps track of volunteers and assigns
them out to specific events(this is a high end entertainment center).
They of course have volunteers that come in for specific events who
donate their time and they are generally assigned to take tickets,
tend bar, serve as ushers at various doors. Each volunteer has been
assigned job codes, some have 1 job code and some have several job
codes...depending on the experience they have had. Such as ticket
takers we have a code of TT, ushers the code is US, etc. Now I have
to produce a Roster report and on the report I have to list the
various locations such as for ushers where they would be assigned
to.....such as Left Lobby Door and a Right Lobby Door, Mezzanine both
Left and Right, Grand Tier Right and Left....etc. The number of
ushers they assign to each of these locations is dependant on the
house size....for instance a house size 1 would only assign 1 usher to
Lobby Left and 1 usher to Lobby Right, where a house size 2 would
assign 2 ushers to Lobby Left and 2 ushers to Lobby Right and so
forth....we go up to house size 6. I have used different queries and
subReports but still have not be able to solve the problem. I have
been pulling my hair out!!!!!

Can anyone help me with this problem?

Doris
Doris,

How big is your database, are you willing to email it so I can take a
look for you ?

Joe

Mar 26 '07 #2
All depends on how well your DB is set up. If you have one table with
each voulnteer and somehow all the job codes in that table uyou are
pretty much screwed. If you have a well normalized databse it should
be easy! Can you decribe the table structure please and Im sure
someone can help you with the query to draw the data and display it
the way you want to see it.

On Mar 26, 1:25 pm, Dori...@aol.com wrote:
Hello,

I am a novice with MS Access so I want to apologize ahead of time with
the fact that I know very little about Access.

I have an Access database that keeps track of volunteers and assigns
them out to specific events(this is a high end entertainment center).
They of course have volunteers that come in for specific events who
donate their time and they are generally assigned to take tickets,
tend bar, serve as ushers at various doors. Each volunteer has been
assigned job codes, some have 1 job code and some have several job
codes...depending on the experience they have had. Such as ticket
takers we have a code of TT, ushers the code is US, etc. Now I have
to produce a Roster report and on the report I have to list the
various locations such as for ushers where they would be assigned
to.....such as Left Lobby Door and a Right Lobby Door, Mezzanine both
Left and Right, Grand Tier Right and Left....etc. The number of
ushers they assign to each of these locations is dependant on the
house size....for instance a house size 1 would only assign 1 usher to
Lobby Left and 1 usher to Lobby Right, where a house size 2 would
assign 2 ushers to Lobby Left and 2 ushers to Lobby Right and so
forth....we go up to house size 6. I have used different queries and
subReports but still have not be able to solve the problem. I have
been pulling my hair out!!!!!

Can anyone help me with this problem?

Doris

Mar 26 '07 #3
Have you created any tables yet? Entered any data? If you have not
created any tables yet, you could start by creating a table to store the
names of your volunteers which could include an autonum field to assign
each volunteer an ID column then a FirstName column, LastName column,
and maybe some personal data like home address, teleophone. Name this
table tblVoluneerData (note: best not to have spaces in the column names
- if you need a space then use an underscore - First_Name)

Then create another table which would contain the and ID column that
would be the value of each volunteer for each position the volunteer
has, create a Position column, and it would look something like this:

tblVolunteer
ID Name
1 Joe Smith
2 Sue Jones
3 Mark Adams

tblPosition
ID Position
1 Usher
1 Doorman
1 Receptionist
2 Usher
2 Ticket Taker
3 Usher
3 Doorman
3 Security

You could have an additional table where you store the location of each
volunteer

tblLocation
ID Location
1 Lobby
1 Mezanine
1 Left Door
2 Left tier
2 Right Tier
3 Grand Tier
3 Right Door

One thing to avoid is to collect duplicate/redundant data like

Name Position Location
Joe Smith Usher Lobby
Joe Smith Usher Mezanine
Joe Smith Doorman Lobby
Joe Smith Doorman Mezanine
J. Smith Doorman Left Door
...

here the name Joe Smith and all the information pertaining to him is
being entered several times, along with the Positions... The problem
here is that one entry may be Joe Smith, the next entry might be J.
Smith, another entry might be Joe A. Smith... so you lose consistency.

Access is a Relational database management system (RDBMS) for desktop
computers. The key feature of an RDBMS is that the data gets entered
only one time, and then it gets propagated throughout the system by
queries or by programming code of the RDBMS. The RDBMS will not change
the data once it is entered. But multiple entries of the same data
always gets changed which makes it very difficult to report on with any
degree of accuracy.

In case you care, the concept underlying RDBMS is called "Normalization"
- the concept of eliminating redundant data. Once you have some tables
with data and need help with writing queries to query the data you can
post a question that is a little more specific.

hth
Rich

*** Sent via Developersdex http://www.developersdex.com ***
Mar 26 '07 #4

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

Similar topics

6
by: mike | last post by:
Hello, After trying to validate this page for a couple of days now I was wondering if someone might be able to help me out. Below is a list of snippets where I am having the errors. 1. Line 334,...
5
by: John Flynn | last post by:
hi all i'm going to be quick i have an assignment due which i have no idea how to do. i work full time so i dont have the time to learn it and its due date has crept up on me .. As follows:...
0
by: xunling | last post by:
i have a question about answering ..... this topic is "need help" what do i have to write at te topic line, !after i have klicked the "answer message" button ive tried many possibilities,...
9
by: sk | last post by:
I have an applicaton in which I collect data for different parameters for a set of devices. The data are entered into a single table, each set of name, value pairs time-stamped and associated with...
7
by: Timothy Shih | last post by:
Hi, I am trying to figure out how to use unmanaged code using P/Invoke. I wrote a simple function which takes in 2 buffers (one a byte buffer, one a char buffer) and copies the contents of the byte...
15
by: Cheryl Langdon | last post by:
Hello everyone, This is my first attempt at getting help in this manner. Please forgive me if this is an inappropriate request. I suddenly find myself in urgent need of instruction on how to...
16
by: pamelafluente | last post by:
I am still working with no success on that client/server problem. I need your help. I will submit simplified versions of my problem so we can see clearly what is going on. My model: A client...
8
by: skumar434 | last post by:
i need to store the data from a data base in to structure .............the problem is like this ....suppose there is a data base which stores the sequence no and item type etc ...but i need only...
0
by: U S Contractors Offering Service A Non-profit | last post by:
Brilliant technology helping those most in need Inbox Reply U S Contractors Offering Service A Non-profit show details 10:37 pm (1 hour ago) Brilliant technology helping those most in need ...
20
by: mike | last post by:
I help manage a large web site, one that has over 600 html pages... It's a reference site for ham radio folks and as an example, one page indexes over 1.8 gb of on-line PDF documents. The site...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
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
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...

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.