Is This Possible?

K

Karen

First, I don't know if this is possible and second, I don't know if it's
best to use Access or Excel. This is what I want to do:

I have many instruments that I have to calibrate annually and every 6
months. I would have 5 fields: Instrument Description, Instrument
Manufacturer, Serial No., Date Calibrated; Calibration Due Date. I want to
record all this information, but I want to be able to flag 4 different people
in the company (via Outlook) two weeks prior to the calibration due date. Is
this possible?

Thank you, Karen
 
K

KARL DEWEY

You need to add a field for key field as ID, add a field for calibration
interval and possibly information of calibration level.
You need to review you equipment list for a common interval method - days,
months, etc. Use the interval as a multiplier such as 180 days or 6 months.
Move calibration dates to another table. You need to maintain the records
on when it was calibrated for historical purposes - traceability.
CalTable --
ID - foreign key to match equipment ID field
CalDate - datetime - date of actual calibration
Remarks - text - note of any limitations - 500 volt scale 10 percent

Use a query to calculate the date due by using DateAdd function.
Calibration Due:
DateAdd("m",[YourEquipTable].[Interval],Max([CalTable].[CalDate]))

Criteria <=Date() + 14
 

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

Similar Threads

Formatting and working with dates/months 3
Is This Possible? 0
Automate Spreadsheet 3
dateadd/future date 6
Due date - change cell color 2
Need formula for a querie! 9
Link Access to Outlook 0
Report 4

Top