
All you have to do now is find the field you’d like to hide and click, hold, and drag it up to the box of fields at the top of the page (so that you see the green ✅ appear), then release. Now click “Save” And you’re all set, the field is now hidden from the page layout!
How to remove custom fields from a Salesforce page?
Easy way would be 1st one because just creating custom object,salesforce would give you all standard functionality & good part is that you don't any code for doing it. Just remove it from page layout. Some fields cannot be removed. The work-around is overriding with visualforce page.
How to hide fields depending on values in other fields?
I think you can't hide fields depending on values in other fields. Most user will set up a validation rule (VR) because Salesforce doesn't support this but if you to hide you can only do this by creating custom validation. Log In to reply.
How to hide a field from the edit page?
You can hide it by removing from the Page layout but it would be removed from the detail page as well. Else you can create a new field as formula returning the field type of your existing field which you want to remove from the edit page and then you can add your field in the Formula.
Why formula fields are not available in edit page in Salesforce?
They are read only fields and hence they are not available in Edit page. You can put some logic in formula field to fetch the value from other field or object. Lakshman's approach looks fine.

How do I hide a field in a Salesforce report?
Review the field's Field Level Security settings. 2. Note that the field is set to 'Hidden' for some Profiles. 3. Hover over 'Hidden' and either field is hidden because of page layout or field is hidden because of Field Level Security appear.
How do you hide a field?
Select the element and click the gear icon to open the Properties panel. Go to the Advanced tab. Scroll down and toggle the Hide Field option to “On”.
How do I hide a field based on another field in Salesforce?
I think you can't hide fields depending on values in other fields. Most user will set up a validation rule (VR) because Salesforce doesn't support this but if you to hide you can only do this by creating custom validation.
How do I hide a field while creating record in Salesforce?
Create two Record Types.(Name it as New, Detail)Create two Page Layout. ... Assign the New Pagelayout as the default on the profile.To bypass the record type select screen ( Your name(in header) - > My Settings - > Display and layout - > Set Default Record Types ) or Give user access to only NewRecord using profile.More items...•
How do I hide a field in a query?
To hide a field within a query:Open the query and switch to Design view.Locate the field you want to hide.Click the checkbox in the Show: row to uncheck it. Unchecking a field to hide it.To see the updated query, select the Run command. The field will be hidden.
How do I hide a field in service now?
First create a UI policy and give your conditions in the When to Apply field. Once you create the UI Policy, Create a new UI Policy action in the Related Lists. Here you can specify the field that you want to hide and select visible to be False. That should work.
How do I hide an object in Salesforce?
Direct way to do this is go to profile > click edit and un-check object access (read/create/edit/delete/view all/Modify all) and that object won't be visible to that profile.
How do I view hidden fields in Salesforce?
Expand the Entity you want to customize, such as Leads, and choose Fields.Click the name of the field you want to expose.Click Set Field-Level Security. A list of users with access to that field displays.
How do I remove a field from a page layout in Salesforce?
Go to Page Layout >> Click Fields >> Uncheck Required Check Box.
How do you hide a field in lightning component?
You could use SLDS styling classes, . slds-hide or . slds-hidden , to hide your component from user and let it hold the value for later use.
How do I mask a field in Salesforce?
Follow the steps to create a new masking configuration:From the list of all standard and custom objects in your production org, select any objects that contain sensitive data that you want to mask. ... For each selected object, configure the masking rules for each of its fields. ... Click Save.
How do you delete a field from a record type in Salesforce?
1 AnswerHide the pick-list on the page layout associated with that RecordType.Remove all pick-list options from the pick-list for that particular RecordType (click edit on the screen have captured above, and remove all options)
shariq
You need to overwrite the standard detail page with custom visualforce page, where you can show/hide the field on custom logic in script.
Parul
I think you can't hide fields depending on values in other fields. Most user will set up a validation rule (VR) because Salesforce doesn't support this but if you to hide you can only do this by creating custom validation.
Record Type Switching
Since the displayed page layout is based on the profile / record type you can in effect create two layouts one for a new record which is displayed when creating a new object, and another layout for viewing and editing an existing record. When a new record is saved use workflow or process builder to change the record type.
Page Overrides
If custom development is an option you can override the new / edit / view pages for a case independently allowing you to display different fields in each scenario. This requires creating a visualforce page and/or lightning component.
Quick Actions
With quick actions you can create a specific form for creating cases. It won't override the 'New' button globally, but you can hide that where possible and replace it with your quick action. Once the record is created the fields displayed when viewing or editing would be driven by the page layout.

Getting Started
“Deleting” Fields
- First, if it’s a custom field and you’re just trying to get rid of it, select “Fields & Relationships” from the left-hand column. Then, find the field you’d like to delete and click the menu arrow on the right-side of its row. Then select “Delete” from the drop-down menu. You’ll see a very serious pop-up letting you know that this action will also delete all dependent info for any dependent or controlli…
“Removing” Fields
- Ok, but let’s say you have a field that contains data you need (maybe you report on it, or it’s relevant to a third-party system, etc…, but your users never need to update it and they don’t need to see it on their screens in their day-to-day). In that case, to “hide” the field, we’ll just need to remove it from the Page Layout! So begin by selecting “Page Layouts” from the left hand column. Then s…
Use Record Types to Hide An Irrelevant Field
- Finally, one last way to hide a field is via Record Types! This is a good solution if you have multiple types of the same object that require different fields (for instance, if you manage residential and commercial properties and use a Property object, you might want to keep a record of “pets” or the like on your residential records, but that field would be unnecessary on the commercial records)…