Yes. Depending on your circumstances I'd suggest some of the following might apply.
Create a new Table (since you haven't told us what the Data on the Form represents I'll make an guess --- Tools.) Go with me on this one, we'll get there.
So we have Tool #100 and Manager ABC wants to add a Comment on May 31/2013.
So the new table will have a structure like
tblToolComments
ToolCommentId PK
ToolId FK to the record in the TOOL table
ManagerId FK to the manager's record in the Manager Table
CommentDate Date/Time ' need this since there could be multiple Comments by manager
CommentText Text or Memo depending on size of comments
and the new Table will have this relationship with Tools
1 ----> Many
Tools-->ToolComments
This requires that you have a Table of Managers
You will be able to search comments by Tool by manager By date or any combination.
You can have a Form /subform arrangement to add/review comments. This is common in Access programs.
You can only add a comment about the TOOL, IF THE TOOL already exists. Said differently, the TOOL must exist before a comment about the Tool can be created.