That would be very bad practice to store multiple values in the one field. For a start, it makes it difficult to determine which records say Name3 is included on. You'd have to write code to append the names for the ticked check boxes into the table and then code to deconstruct the field containing the names when the record was being displayed in the form.
A better way is to have 8 Yes/No fields in your table. But this has pitfalls if the number of users increases. You would have to add additional fields for each new user as well as check boxes on your form. Also if there are changes in Personnel.
The best solution is to have 3 tables, one the original that holds the records for whatever the people worked on, a people table, and a junction table which would contain up to 8 (or as many as you'd like) records for each object ID and a different PersonID for each person who worked on the object.
Search this site for junction tables. It's a common topic.