All, thanks for helping with this. Please see below and let me know what you think.
1. UsersAll will not have access to the main DB (FE / BA).
2. All they can do is add/delete/modify worked hours in a form I created in a different access.
3. All inputs are linked to the main DB using external linked access files.
4. From there, I developed a query that can compile all those inputs - not an issue.
5. This allows me to track all worked hours in all projects and even break it down using different parameters - again, not an issue.
The problem is:
1. I don't know how to add a complete line item to a table on access, so UserManagers can input complete line items into the DB.
2. The reason why it's not working is because when I create a column on a query, I want it to swap all external references and, if not null, add that new row.
3. I tested using the built-in function with this function: IIf(IsNull([User]![DateUserInput]),"",[User]![DateUserInput]), but instead of returning only (2) rows that had been added to one of the external references, it returned 72, which doesn't make sense.
4. I've also tested Date: IIf([User]![DateUserInput] Is Not Null,[User]![DateUserInput],""), but it returned the same 72 rows.
5. My idea was to, if it had worked, use the same command line for all users, because what I want, in essence, is to have "N" columns (date/project#/description/etc...) and (1) lookup table looking at all external references and compiling data in that query.
It'd be similar to using =lookup on excel.