Hello. I've already put up a post up on the premise that I just have to adjust a query to get what I want. But my design was not good. So I have to take a different approach. I'm just trying to create a database that allows users to record their observations while working on a machine. There are multiple machines, multiple users, even multiple shifts. And they will all access the db to record their observations randomly and independent of each other. But there will be one user at one machine at one time. So I thought I would create a table per machine, to prevent records from being overwritten. Each table includes the machine name, current date, notes for shift 1, and notes for shift 2. The problem is that the query that I used to collect that data, and show it is blank if one machine was not used that day (therefore, no record/notes for that machine). So I was advised to create a relational database with tables for each entity.
Here's what I got:
Am I on the right track? And, if I am, how can I make a form that allows for data entry if the tables are all separate? Thanks in advance.