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
SunilSunil 

How to make 'Active' field visible to non admin users

Hi,

 

Being an admin, I can see 'Active' field at the user record but it is not visible to other users.

 

SFDC does not have any way to set field level security for 'Active' field which is at user object. Also this field is not available so I could add to the user page layout.

 

Any help, how to 'Active' field visible to all users.

 

Thanks

Best Answer chosen by Admin (Salesforce Developers) 
JimRaeJimRae

You can create a custom formula field, make the formula field a Text type, and use a formula like this:

 

 

if(IsActive,"Active","InActive")

 

Then, you can control the visibility and the page layout position of this custom field.