Hi henrik,
Welcome to use MSDN Managed Newsgroup Support.
Based on my experience, I'd like to give you some advice:
1. Create a table named tblAttendMeeting which store the data of
attendance of each meeting with the field: MeetingID, memberID. (I assume
you have a uniq ID for each Member in the group and a uniq ID for each
Meeting )
2. Using the following SQL statement to get the attended-meetings number
for each member.
SELECT memberID, COUNT(*) AS AttendMeetingNum FROM tblAttendMeeting GROUP
BY memberID
3. Also, you can use the UPDATE statement to update the attended-meetings
field.
you could first get the actual Attend meeting num for a member and then
update the field.
Hope this will be helpful.
Wei Lu
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
=====================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
=====================================================

Signature
This posting is provided "AS IS" with no warranties, and confers no rights.
Henrik - 17 Mar 2006 08:02 GMT