Creating a list of computers and the group they assigned

(imported topic written by SystemAdmin)

Any simple way of producing a list of computers along with the group that they’re assigned to?

(imported comment written by Lee Wei)

You can try this:

(name of item 0 of it,
name of item 1 of it)
of (bes computers, bes computer groups)
whose (size of ((member set of item 1 of it) - (set of item 0 of it)) < size of member set of item 1 of it)

Here is a form that is suitable for web reports

<?relevance (html "" & it & html "
Computer Group
") of concatenations of trs of (td of preceding text of first "||" of it & td of following text of first "||" of it) of unique values of (name of item 0 of it & "||" & name of item 1 of it) of (bes computers, bes computer groups) whose (size of ((member set of item 1 of it) - (set of item 0 of it)) < size of member set of item 1 of it) ?>

Since there are no filters, it will probably be a long report, so we might want to consider a filter at some point.

Lee Wei