This is the Gizmo script which will return a chosen value for all the members of an individual manager's team.
You can show the names : -
node.ac.groupby('fullname').format("{values.count} {key}").join('\n')
Or the job titles : -
node.ac.groupby('role').format("{values.count} {key}").join('\n')
Note: these expressions assume that the property key that contains Full Name is 'fullname' and that the the Job Title property key is 'role'. In your case this property might have a different name, in which case you would need to insert the property name you are using.
Comments
0 comments
Please sign in to leave a comment.