Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

enumerate group membership based on an Access table

Status
Not open for further replies.

bmclean2

MIS
Jul 20, 2005
22
0
0
US
IF I have a list of groups stored in an access table in the form: domain\group, how can I create a report that lists all of the users of each group?

Thanks...
 
Set objGroup = GetObhject("WinNT://domain/" & groupname & ",group")
For Each aUser In objGroup.Users
Msgbox aUser.Name

Next
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top