Forum Discussion
MarkShnier__You
Qrew Legend
Try this
ToUserList([userlist 1],[userlist 2])
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------
ToUserList([userlist 1],[userlist 2])
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------
HeatherBryant2
5 years agoQrew Assistant Captain
Thanks, Mark! That worked. I had tried ToUserList([user1], [user2], [user3], [userlist]) and got an error that userlist was expected to be a user. When I combined [user1], [user2], [user3] into a user list, the formula you provided worked.
------------------------------
Heather Bryant
------------------------------
------------------------------
Heather Bryant
------------------------------
- MarkShnier__You5 years agoQrew LegendRight,
the ToUserList function will combine either a set of User field types or a set of User List field types but you can't mix them in the same function..
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------- MattStephens3 months agoQrew Cadet
You can however just have a touserlist function inside a touserlist function to combine single users and user lists:
ToUserList(
ToUserList( [Project controller username], [Project - APM Username], [Record Owner]), //individual users
[Asset Engineering Delegates] //lists of users
)