I am looking for a template or help setting up an employee journal database
that needs to include Name, Employee #, Hire date, with space for a topics
discussed section that can be time and date stamped.
Sounds like you've gone a long way toward doing this yourself!
I don't know of a template, but a very simple two-table database would
be a good start:
Employees
EmployeeID <Primary Key> (Don't us # in fieldnames)
LastName
FirstName
MiddleName
Suffix
HireDate
Discussions
DiscussionID Autonumber Primary Key
DiscDate Date/Time
TopicDiscussed Text
A simple Form based on Employees, with a subform based on Discussions
would work for data entry; you could set the Default Value of the
textbox bound to DiscDate on the subform to Now() to timestamp each
record with the date and time it was entered.
If you have a standard list of topics, you might add that as a lookup
table; you might also want a Memo field in discussions wherein to
enter the outcome of the discussion, comments about it, etc.
John W. Vinson[MVP]