A family of Microsoft relational database management systems designed for ease of use.
Being so new to Access let's start from the beginning...
Here are some resources to learn about databases...
Jeff Conrad's resources page...
http://www.accessmvp.com/JConrad/accessjunkie/resources.html
The Access Web resources page...
http://www.mvps.org/access/resources/index.html
A free tutorial written by Crystal (MS Access MVP)...
http://allenbrowne.com/casu-22.html
MVP Allen Browne's tutorials...
http://allenbrowne.com/links.html#Tutorials
UtterAccess Newcomer's Reading List
http://www.utteraccess.com/forum/Newcomer-s-Reading-List-t1998783.html
Sample data models...
http://www.databasedev.co.uk/table-of-contents.html
http://www.databaseanswers.org/data_models/
Naming Conventions…
http://www.access-diva.com/d1.html
Other helpful tips…
Setting up a Model Database
http://www.access-diva.com/d11.html
My Database Standards...
http://regina-whipp.com/blog/?p=102
The other thing you need to take into consideration is field names. Words like *Name* and *Date* are Reserved Words and you should never use them as field names. They create problems for Access which in turn creates problems for you. For a complete list of Reserved Words see...
http://allenbrowne.com/AppIssueBadWord.html
As for your tables, you'll be needing...
tblProjects
pProjectID (Primary Key - Autonumber)
pProjectTitle
pCompany
pStatus
etc...
tblComments
cCommentID (Primary Key - Autonumber)
cProjectID (Foreign Key - Number/Long - relate to tblProjects/pProjectID)
cComment
cDate
etc...
However, if a more than one Company can be assigned to a Project then the table set up changes...
tblProjects
pProjectID (Primary Key - Autonumber)
pProjectTitle
pStatus
etc...
tblCompanies
cCompnayID (Primary Key - Autonumber)
cCompany
etc...
tblCompanyProjects
cpID (Primary Key - Autonumber)
cpCompanyID (Foreign Key - Number/Long - relate to tblCompanies/cCompanyID)
cpProjectID (Foreign Key - Number/Long - relate to tblProjects/pProjectID)
etc...
tblComments
cCommentID (Primary Key - Autonumber)
cProjectID (Foreign Key - Number/Long - relate to tblProjects/pProjectID)
cComment
cDate
etc...
You can then use a subreports to show the comments in a Report.