Forum Discussion
XavierFan
6 years agoQrew Cadet
Try this formula. You may want to put a default user at the end, in case [User D] is also blank.
------------------------------
Xavier Fan
Quick Base Solution Provider
http://xavierfanconsulting.com/
------------------------------
If(
IsNull([User A]) = false, [User A],
IsNull([User B]) = false, [User B],
IsNull([User C]) = false, [User C],
IsNull([User D]) = false, [User D]
)
------------------------------
Xavier Fan
Quick Base Solution Provider
http://xavierfanconsulting.com/
------------------------------
- Lightning01146 years agoQrew CadetThank you! Will try this one. Appreciate your help.
------------------------------
Ma. Isabel Gumanid
------------------------------- XavierFan6 years agoQrew Cadet(for some reason - I encountered an error when trying to reply to your message)
Ok - if you want to check [User A] against some email, try this formula:If(
IsNull([User A]) = false and UserToEmail([User A]) <> "supervisor@gmail.com", [User A],
IsNull([User B]) = false, [User B],
IsNull([User C]) = false, [User C],
IsNull([User D]) = false, [User D]
)
The UserNameToEmail changes the User into the email it corresponds to, and you compare that with the email that you have.
Then the rest of the formula is the same. Hope this helps!
------------------------------
Xavier Fan
Quick Base Solution Provider
http://xavierfanconsulting.com/
------------------------------