@padadof2
If it were me, I'd create the database with properly normalized tables and link to the worksheet as a table, assuming it doesn't ever change it's name. If it does periodically, then I'd probably import from Excel when necessary. The end goal being to normalize the tables and distribute the sheet data amongst them, thinking that seldom does a sheet make for a good table. I think normalized tables is where you're about to falter. If prime is a person, then for those people you should probably have one table, not 3. If you repeat field data (or could possibly need to do so in the future) because you can have 2 or more of those people identified (as what I don't know) then you definitely have a problem there. Example
WHO | WHAT | START | END | OTHER STUFF | | | | | |
owner1 | A project | 1/25/22 | 5/30/22 | AS;KDFJASLKFJ | | | | | |
engineer | A project | 1/25/22 | 5/30/22 | AS;KDFJASLKFJ | | | | | |
My goal is to be able to query the database to see if the owner/prime/engineer is existing,
Properly normalized tables would take care of that, especially if the data you're looking for is in the same table. If it's not and should not be, then you examine a query result that brings those table fields together. Consider doing some research (might as well give you all the important novice stuff):
Normalization Parts I, II, III, IV, and V
Thoughts, opinions, samples, tips, and tricks about Microsoft Access
rogersaccessblog.blogspot.com
and/or
holowczak.com
Entity-Relationship Diagramming: Part I, II, III and IV
Thoughts, opinions, samples, tips, and tricks about Microsoft Access
rogersaccessblog.blogspot.com
How do I Create an Application in Microsoft Access?
Thoughts, opinions, samples, tips, and tricks about Microsoft Access
rogersaccessblog.blogspot.com
Important for success:
Naming conventions -
General: Commonly used naming conventions
_________________________________________________________ Naming Conventions. This document is aimed at the user who is unfamiliar with any naming convention. It is based upon personal experience and the interaction I have had with others. It is not a hard and fast rule. Why use a...
www.access-programmers.co.uk
What not to use in names
-
Microsoft Access tips: Problem names and reserved words in Access
About Auto Numbers
-
General: Use Autonumbers properly
The evils of lookup fields -
The Access Web - The Evils of Lookup Fields in Tables
Table and PK design tips -
Microsoft Access Tables, Primary Key Tips and Techniques
About calculated table fields -
Microsoft Access tips: Calculated Fields
About Multi Value Fields -
Multivalued Fields