msaccess product accountability

Shums321

Junior Member
Aug 29, 2013
3
0
0
I am so lost when it comes to MSACCESS but I know it is the only way to get the result I need.
I perform fit test on individuals who work for my organization. The fit testing is to ensure they receive the proper size of respirator and then account for each individual respirator that is issued out over the course of the day.
The way it has been done up to this point is using generic excel sheet and the info required is entered between multiple sheets; Such as list of personnel, size of respirator and date fit test was performed. While this gets the job done it is very tedious and the accountability is not 100%.

I am basically looking for a way to make a database of individuals; the database will require the usual info such as name, office location, phone number, immediate supervisor, date the fit test was performed and an expiration of one year for the test from the date of the fit-test.

I also need to have a database of 2 different model respirators in 3 different sized for each model. Each respirator will be serialized. The information unique to the respirators will be make, model and size. As a respirator is issued out for use I need the database to remove it from list of available respirators.

When a respirator gets issued to an individual certain information is required. This is where the tediousness comes in. 80% of my wasted time is verifying a valid fit test and manually typing each cell with the pertinent info about the individual and then the size and serial number of the respirator.

I want to make it so that when an individual shows up to check out a respirator I enter his name and all of his info is brought forward including the size of respirator that individual is fit tested to. Then I want to know what respirators in that particular size are available to issue and complete the business of issuing them what they need. If I have a team of workers show up I’d like to be able to print one receipt that is sorted by their job control number which will show each individual and respirator s/n # assigned. I am also responsible to ensure, during the day when the work is being performed, that respirators are being used properly so having a way to print a report of all active jobs, personnel assigned to work, respirator # for each worker and the location of each job on one sheet of paper would make this task so much easier.

I also need to be able to generate a report what is currently checked out and to whom. If anyone can help with this either by putting something together or sending me some easy to follow instructions on how to do this myself I would be very grateful.
I am running MSACCESS 2003; unfortunately I have no input on when upgrade to current MSOFFICE will happen.



Thank you in advance
~~Shums~~
 

Jaydip

Diamond Member
Mar 29, 2010
3,691
21
81
You need a front end, are you sticking with forms or do you have something else like C#,VB etc?
 

EagleKeeper

Discussion Club Moderator<br>Elite Member
Staff member
Oct 30, 2000
42,589
5
0
Tables are easy.

As stated above, you need a friendly user Front end, a couple of queries and a couple of reports designed up.

Grab Access for Dummies and go from there.

I would slap together the tables structure for you gratis, but unsure how backward compatible 2010 is
 

Shums321

Junior Member
Aug 29, 2013
3
0
0
I don't have any VB or C or anything like that. at this piont i have a table for personnel, a table for respirators. I dont know what to do beyond this for MSACCESS, i'm more familiar with Excel but i can't get it to do the reports i need and the current setup is just too disorganized. Access for dummies is the next step for me, i was trying to see what i could do while i'm stuck at work. thanks to all who replied
 

Jaydip

Diamond Member
Mar 29, 2010
3,691
21
81
I don't have any VB or C or anything like that. at this piont i have a table for personnel, a table for respirators. I dont know what to do beyond this for MSACCESS, i'm more familiar with Excel but i can't get it to do the reports i need and the current setup is just too disorganized. Access for dummies is the next step for me, i was trying to see what i could do while i'm stuck at work. thanks to all who replied

You need a third table which will join these two.I hope you know about normalization and such.
 

Shums321

Junior Member
Aug 29, 2013
3
0
0
i guess i'll dig into a dummies book this weekend and see what i figure out. I appreciate the pointers
 

EagleKeeper

Discussion Club Moderator<br>Elite Member
Staff member
Oct 30, 2000
42,589
5
0
You need a third table which will join these two.I hope you know about normalization and such.

Should have a fit table also.
Fit table is linked to respirator and to client.

One query is by user
Another is by unit type
Another by serial number if unit
Then one by date/range.
Potentially one by MD that ordered unit.

Quick n dirty is to print out the query results what you see is what you get.

Then build a report for each query.

Finally a front end for data entry


Step by step, things fall into place.
 

Jaydip

Diamond Member
Mar 29, 2010
3,691
21
81
Should have a fit table also.
Fit table is linked to respirator and to client.

One query is by user
Another is by unit type
Another by serial number if unit
Then one by date/range.
Potentially one by MD that ordered unit.

Quick n dirty is to print out the query results what you see is what you get.

Then build a report for each query.

Finally a front end for data entry


Step by step, things fall into place.

Yeah :thumbsup: