Somehow you have managed to engineer the form so that it is showing the result set of a query in which each row in the table is showing a separate instance for each value in the multi-valued field. If the form is bound to the table this should not happen,
as the multi-valued field will be presented on the form via a combo box.
However, unless you really need to use a multi-valued field, i.e. if your database is interfacing with SharePoint in the very specific context in which such a field is required, the real solution is not to use a multi-valued field at all, but to design the
database in accordance with the established principles of the database relational model.
What you have here is a many-to-many relationship type between personnel and action types. The way in which a many-to-many relationship type is modelled in a relational database is by means of a table which resolves the many-to-many relationship type into
two one-to-many relationship types. So you'd have table like this:
Personnel
....PersonnelID (PK)
....FirstName
....LastName
....etc
ActionTypes
....ActionTypeID (PK)
....ActionType
and to model the relationship type:
PersonnelActionTypes
....PersonnelID (FK)
....ActionTypeID (FK)
The primary key of this last table is a composite one made up of the two foreign key columns.
For an example of this sort of a basic binary (2-way) relationship type and how to represent it in forms see StudentCourses.zip in my public databases folder at:
https://skydrive.live.com/?cid=44CC60D7FEA42912&id=44CC60D7FEA42912!169
If you have difficulty opening the link copy its text (NB, not the link location) and paste it into your browser's address bar.
This little demo file shows three ways of presenting the data in a form, but the usual, and by far the simplest, approach is the conventional one of a form based on the main referenced table, and within it a subform based on the table which model the many-to-many
relationship type. Unlike the other methods this requires no code whatsoever (unless you want to include a navigational combo box to go to a record, or to use the NotInList event procedure of the combo box in the subform to add a new course (action type in
your case), as in my demo).