I have a an ad group that has about 130 people in it. I am using a combo box with this code
Office365Groups.ListGroupMembers("idvalue").value
Currently it is showing only 100 people.
Solved! Go to Solution.
I was going by the online doc but when I entered in the tool, it prompted and auto-filled the param names. This is what I got. I guess the non required params needed the braces and single quote.
Office365Groups.ListGroupMembers(ID,{'$top':500})
see https://docs.microsoft.com/en-us/connectors/office365groups/#list-group-members you need to specify a different value for "Top"
@geneZebra Do you know what the code looks like? List groupmembers doesn't appear to take Top:500 as a second parameter.
Office365Groups.ListGroupMembers("groupID", Top:500 ).value
try the following. Values enclosed in {}'s.
Office365Groups.ListGroupMembers({groupId:"groupID", Top:500 }).value
Getting an error saying Invalid arugment type (Record). Expecting a Text value Instead.
I was going by the online doc but when I entered in the tool, it prompted and auto-filled the param names. This is what I got. I guess the non required params needed the braces and single quote.
Office365Groups.ListGroupMembers(ID,{'$top':500})
User | Count |
---|---|
225 | |
101 | |
93 | |
57 | |
31 |
User | Count |
---|---|
284 | |
116 | |
109 | |
63 | |
57 |