• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar

TinyGrab

Your Trusted Source for Tech, Finance & Brand Advice

  • Personal Finance
  • Tech & Social
  • Brands
  • Terms of Use
  • Privacy Policy
  • Get In Touch
  • About Us
Home » How to create a related list in Salesforce?

How to create a related list in Salesforce?

October 19, 2025 by TinyGrab Team Leave a Comment

Table of Contents

Toggle
  • Demystifying Related Lists in Salesforce: A Comprehensive Guide
    • Frequently Asked Questions (FAQs) About Related Lists
      • 1. What exactly is a Related List?
      • 2. What if the Related List I need isn’t in the Available List?
      • 3. How do I control which users see a particular Related List?
      • 4. Can I change the order in which Related Lists appear on a page?
      • 5. How do I add a new record directly from a Related List?
      • 6. What’s the difference between a Lookup Relationship and a Master-Detail Relationship in the context of Related Lists?
      • 7. Can I filter the records displayed in a Related List?
      • 8. How can I add a chart or graph to a Related List?
      • 9. Is it possible to add a Related List from a custom object?
      • 10. Why isn’t the “New” button showing on my Related List?
      • 11. Can I use a Related List to display data from a third-party system?
      • 12. What are Enhanced Related Lists?
    • Conclusion

Demystifying Related Lists in Salesforce: A Comprehensive Guide

So, you want to master the art of creating related lists in Salesforce? Excellent choice. Mastering related lists is like unlocking a hidden level of Salesforce efficiency, turning data clutter into an organized symphony. In essence, you create related lists by customizing page layouts for specific objects. Here’s the breakdown:

  1. Navigate to Object Manager: Go to Setup (the gear icon) and then click “Object Manager.” This is your command center for all things objects.
  2. Select the Object: Choose the object where you want to display the related list. For example, let’s say you want a related list of Contacts on the Account object. Click on “Account.”
  3. Go to Page Layouts: In the left sidebar, click on “Page Layouts.” You’ll see a list of the page layouts available for the Account object.
  4. Choose the Layout: Select the page layout you want to modify. Usually, you’ll start with the default layout or the one assigned to specific profiles. Click on the “Edit” button next to the chosen layout.
  5. Drag and Drop the Related List: In the page layout editor, scroll down to the “Related Lists” section in the top pane. You’ll see a palette of available related lists. Find the related list you want to add (e.g., “Contacts”). Drag and drop it into the “Related Lists” section of the page layout.
  6. Customize the Related List Columns: Hover over the newly added related list, and you’ll see a wrench icon (the properties icon). Click on it. This allows you to customize the columns that will be displayed in the related list. Add, remove, or reorder columns as needed. Think about what information is most relevant for users to see at a glance.
  7. Save Your Changes: Click the “Save” button on the page layout editor.
  8. Verify the Related List: Navigate to an Account record in Salesforce. You should now see the related list of Contacts on the Account’s detail page.

That’s the core process! But like any powerful Salesforce feature, there’s much more to explore. Let’s dive into some common questions.

Frequently Asked Questions (FAQs) About Related Lists

Here are 12 frequently asked questions, to help you understand Related Lists in Salesforce:

1. What exactly is a Related List?

A related list is a section on a record detail page in Salesforce that displays records that are related to the current record. They provide a quick and easy way to see all the relevant information connected to a specific object. Think of it as a window into the relationships between your data. For instance, an Account record might have related lists for Contacts, Opportunities, Cases, and more.

2. What if the Related List I need isn’t in the Available List?

If the related list you are looking for doesn’t appear in the “Related Lists” palette, it usually indicates that a relationship hasn’t been properly established between the two objects. You need to create a lookup or master-detail relationship between the objects in Setup. Once the relationship is defined, the related list will become available in the page layout editor. Remember, Salesforce needs to know how the objects are related before it can display a related list.

3. How do I control which users see a particular Related List?

Related lists are controlled by page layouts. Page layouts, in turn, are assigned to user profiles. To control who sees a specific related list, you need to create different page layouts and assign them to different profiles. This allows you to tailor the information displayed to each user group based on their roles and responsibilities. For example, sales reps might need to see different related lists than customer support agents.

4. Can I change the order in which Related Lists appear on a page?

Absolutely! In the page layout editor, you can simply drag and drop the related lists to rearrange their order on the page. Place the most important related lists at the top for easy access. This simple customization can significantly improve user efficiency.

5. How do I add a new record directly from a Related List?

Many related lists include a “New” button (if allowed by the object relationship permissions) that lets you create a new related record directly from the current record’s detail page. The parent record is automatically populated in the new record. This streamlines data entry and ensures that the relationship is correctly maintained. For example, when creating a new Contact from an Account’s related list, the Account field on the Contact record will be automatically filled.

6. What’s the difference between a Lookup Relationship and a Master-Detail Relationship in the context of Related Lists?

Both lookup and master-detail relationships create related lists, but they differ significantly in behavior. A master-detail relationship creates a strong relationship where the child record (detail) is dependent on the parent record (master). If the parent record is deleted, the child record is also deleted. A lookup relationship is weaker; the child record can exist independently of the parent record. Master-detail relationships always create related lists, whereas lookup relationships only create a related list if specified in the relationship settings.

7. Can I filter the records displayed in a Related List?

Unfortunately, Salesforce doesn’t offer native filtering directly within the standard related list component. However, you can use custom Visualforce pages or Lightning Web Components (LWCs) to create a more customized related list that includes filtering capabilities. Alternatively, consider using reports or list views with filters and embed them onto the page via Lightning App Builder.

8. How can I add a chart or graph to a Related List?

Standard related lists do not natively support charts or graphs. To achieve this, you’ll need to create a custom component (LWC or Visualforce) and embed it into the page layout using the Lightning App Builder. The custom component can then query the related data and display it in a chart format using a charting library. This offers a richer visual representation of the related data.

9. Is it possible to add a Related List from a custom object?

Yes! As long as you have established a lookup or master-detail relationship between the primary object and the custom object, you can add the related list to the page layout of the primary object. The process is the same as adding a related list for standard objects: drag and drop the custom object’s related list from the palette onto the page layout.

10. Why isn’t the “New” button showing on my Related List?

The “New” button might be missing due to a few reasons:

  • Object Permissions: The user’s profile might not have “Create” permission on the related object.
  • Page Layout Customization: The “New” button might have been intentionally removed from the related list properties in the page layout editor.
  • Relationship Type: If the relationship is a lookup relationship without the “Write” permission granted to the lookup field, the “New” button might not appear.
  • Record Types: The user’s profile might not have access to the correct record type of the related object.

11. Can I use a Related List to display data from a third-party system?

Not directly with standard related lists. To display data from an external system, you’ll typically need to use a custom Visualforce page or a Lightning Web Component (LWC). These custom components can integrate with external APIs to retrieve and display the data. You can then embed the custom component onto the page using the Lightning App Builder.

12. What are Enhanced Related Lists?

Enhanced Related Lists are a feature that provides an improved user experience for related lists. They offer the ability to display more columns, use inline editing, and customize button actions directly within the related list. To enable enhanced related lists, go to Setup > User Interface > User Interface and enable the “Enable Enhanced Related Lists” setting. Keep in mind this is an Org-wide setting. After that, go to the Page Layout you wish to enable this feature and enable the enhanced layout from the properties pane.

Conclusion

Mastering related lists is a critical step in maximizing the power of Salesforce. They provide a structured and efficient way to view related data, improve user productivity, and gain deeper insights into your business processes. While standard related lists offer a great starting point, remember that custom Visualforce pages and Lightning Web Components can unlock even greater flexibility and customization possibilities. Armed with this knowledge, go forth and conquer those related lists!

Filed Under: Tech & Social

Previous Post: « Do I Need a Visa to Go to Kenya?
Next Post: How to clear cache and cookies in Safari Mac? »

Reader Interactions

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Primary Sidebar

NICE TO MEET YOU!

Welcome to TinyGrab! We are your trusted source of information, providing frequently asked questions (FAQs), guides, and helpful tips about technology, finance, and popular US brands. Learn more.

Copyright © 2025 · Tiny Grab