A family of Microsoft relational database management systems designed for ease of use.
If you need to do any date arithmetic or filtering, then you need to use the DateTime datatype.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello, I work in a hospital and I am attempting to create a new Access database for tracking patient attendance to therapy groups. However, I am not overly familiar with Microsoft Access and could benefit from some expertise.
My needs are as follows:
My idea for the project:
Create two content types: Patients and Therapy Groups
Patient content type will include items such as:
Therapy Group content will items such as:
Flow of utilization:
Before holding a group a clinician will generate a group-specific form with a list of patients who are assigned to that group.
The clinician will use this form and mark attendance to the group that day
The clinician or the clinician's manager will collect paper forms and update the electronic version of the form to designate yes/no regarding the attendance of individual patients on the form.
This form will feed data into my database which will track:
Final goal: To be able to analyze a particular time period and compare total patient census (at those times, census changes on a daily basis) to treatment hours provided.
While I think I have a decent handle on the project but if anybody in the community has created a similar database and related forms I would love to see a template!
A family of Microsoft relational database management systems designed for ease of use.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
If you need to do any date arithmetic or filtering, then you need to use the DateTime datatype.
Thanks for the quick response and guidance Scott! it's a great help to get feedback on structuring the data.
Follow-up question: What would be the best way to format my admission/discharge date items in a way that my tables will automatically be able to determine the composition of my patient census not only on a given date, but also when examining a range of dates? Maybe some sort of "total patient days" calculation?
Hi Josiah,
Ok, first you will need more than 2 tables. You need a Patient table, but the only info in that tables should be name and demographic info. But then you will need an Admissions table. The Admission table (with PatientID as a foreign key) will record the Admission/Discharge dates, the Unit, Treatment, etc. Then you will need a table for the Therapy Group sessions. What the session is for, date, conducted by, location etc. You will then need a Patient assignment table to assign a patient to a group and record the attendance.
You will probably need other tables to standardize data entry. Tables like a list of clinicians, treatment types etc.
The foundation of an efficient database is a solid normalized data structure