Forum Discussion
QuickBaseCoachD
8 years agoQrew Captain
why not just do
UserToEmail([Analyst])
UserToEmail([Analyst])
- NeveLeem8 years agoQrew TraineeYou mean something like
If (UserListToEmails([Analyst])="analyst #1 email address", "supervisor#1 email",
UserListToEmails([Analyst])="analyst #2 email address", "supervisor #2 email")
???
When I tried this, it gave me an error.
"The types of the arguments or the number of arguments supplied do not meet the requirements of the function UserListToEmails.
The function is defined to be UserListToEmails (UserList ul). - NeveLeem8 years agoQrew TraineeActually I figured out another way for this issue.
But thank you for your help! - QuickBaseCoachD8 years agoQrew CaptainI don't think I read your question carefully enough.
I think you want to hard code the leadership Userid by formula.
If (
[Analyst]=ToUser("analyst#1 email address"), ToUser("supervisor#1 email address"),[Analyst]=ToUser("analyst#2 email address"), ToUser("supervisor#2 email address"))