Forum Discussion
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__You
Qrew Legend
5 years agoRight,
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
------------------------------
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
------------------------------
- MattStephens6 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
)