function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Jacob W LandisJacob W Landis 

how to verify if the account is a salesforce user?

We have a curstom object, case_Account, which contain an email field, I would like to have a formula field which tell whether this case account is a salesforce licensed user based on the email field. Is there a way to do this?
ellospiderellospider
Do you mean a Salesforce user in your org? 
Varun PareekVarun Pareek
I highly doubt that if you can do something using a formula field. You may need to write a trigger on case_Account to update the field. Also if you want 100% sync in data, you may also have to write a trigger on User so that if the user with same email is added/created after the case_account was created, you would have to update the field on case_account in case the email exists.