You need three tables: one that has one row for each member (call it
Members), one that has one row for each meeting (call it Meetings), and one
that resolves the many-to-many relationship between those two tables (call
it MeetingsMembers)
Every time there's a meeting, you'd add a row to the Meetings table and then
insert rows into MeetingsMembers for each member who attend the meeting.