Is it possibility to show the report in a grid based on group type?

is it possibility to show the report in a grid like below format based on group type?

Group name Users
-----------------------------------------------
ABC user1
User2
BCD user3
user4

Any suggestions?

OriginalPostID-206219

OriginalPostID-206219

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer
    is this a paging grid? create a rule named something like rule!showUsersFromGroupInGrid(), and pass in one group as a parameter. In the grid text column you'd call apply(rule!showUsersFromGroupInGrid, local!listOfGroups).

    In the rule, declare a local variable "users" and populate it with the members of the passed-in group. Then have it output: joinArray(local!users, char(10)) - to join the list of usernames with a linebreak in between each one.
Reply
  • 0
    Certified Lead Developer
    is this a paging grid? create a rule named something like rule!showUsersFromGroupInGrid(), and pass in one group as a parameter. In the grid text column you'd call apply(rule!showUsersFromGroupInGrid, local!listOfGroups).

    In the rule, declare a local variable "users" and populate it with the members of the passed-in group. Then have it output: joinArray(local!users, char(10)) - to join the list of usernames with a linebreak in between each one.
Children
No Data