Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a custom function i want to place in a certain table.
I am hoping that the table would be something like this:
Users
v0001
v3002
v8003
.
v1039
The custom function is:
Function MainMember(X)
strComputer = "cmhveyqlikview"Set colGroups = GetObject("WinNT://" & strComputer & "")colGroups.Filter = Array("group")
For Each objGroup In colGroupsif objGroup.Name = "QlikView Administrators" thenFor Each objUser in objGroup.MembersMainMember=objUser.NameNextend ifNext
End Function