Forum Discussion
MarkShnier__You
3 years agoQrew Legend
Create a field on the child called [UserList (text format)] with a formula of
ToText([My User List Field])
Roll that up to the Parent using a Combined Text summary field.
Then on the parent make a formula List User field.
var text AllUsers = ToText([UserList (text format)]);
var user UserOne= ToUser(Trim(Part($AllUsers,1,";")));
var user UserTwo = ToUser(Trim(Part($AllUsers,2,";")));
var user UserThree= ToUser(Trim(Part($AllUsers,3,";")));
ToUserList($UserOne, $UserTwo, $UserThree)
Extend this up to 20 following the pattern.
------------------------------
Mark Shnier (YQC)
mark.shnier@gmail.com
------------------------------
ToText([My User List Field])
Roll that up to the Parent using a Combined Text summary field.
Then on the parent make a formula List User field.
var text AllUsers = ToText([UserList (text format)]);
var user UserOne= ToUser(Trim(Part($AllUsers,1,";")));
var user UserTwo = ToUser(Trim(Part($AllUsers,2,";")));
var user UserThree= ToUser(Trim(Part($AllUsers,3,";")));
ToUserList($UserOne, $UserTwo, $UserThree)
Extend this up to 20 following the pattern.
------------------------------
Mark Shnier (YQC)
mark.shnier@gmail.com
------------------------------