Forum Discussion
DavidBrowne
6 years agoQrew Trainee
I was thinking along those lines as well. I just don't know how to parse the names I get from UserlistToNames([Assigned To]) into separate fields.
I didn't quit follow the bit about the automation deleting the children. What are the children in this case?
Thanks for you help!
------------------------------
David Browne
------------------------------
I didn't quit follow the bit about the automation deleting the children. What are the children in this case?
Thanks for you help!
------------------------------
David Browne
------------------------------
MarkShnier__You
Qrew Legend
6 years agoThe formula to parse out the first user form a List User field would be
ToUser(Part(ToText(UserListToEmails([Assignees])),1,";"))
The 2nd user would be
ToUser(Part(ToText(UserListToEmails([Assignees])),2,";"))
In my suggested setup the Assignment record would have a child table so that if the ListUser Assignees were Curly, Larry and Moe, then there would be three children records, one for each. You would lookup ant info you needed from the Assignment record and then make your report off the child table of the individual assignees.
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
markshnier2@gmail.com
------------------------------
ToUser(Part(ToText(UserListToEmails([Assignees])),1,";"))
The 2nd user would be
ToUser(Part(ToText(UserListToEmails([Assignees])),2,";"))
In my suggested setup the Assignment record would have a child table so that if the ListUser Assignees were Curly, Larry and Moe, then there would be three children records, one for each. You would lookup ant info you needed from the Assignment record and then make your report off the child table of the individual assignees.
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
markshnier2@gmail.com
------------------------------