Skip to main content

SF-0150 · Compare · Medium

What is the difference between a regular account and a person account?

✓ Verified by Vikas Singhal · Last reviewed 5/17/2026

The fundamental difference: a Business Account is a record representing a company or organization, with separate Contact records for the people at that company. A Person Account is a record that represents a single individual consumer, with Account and Contact data merged into one record — though under the hood Salesforce still maintains both rows transparently. Business Accounts are B2B; Person Accounts are B2C.

Side-by-side comparison

AspectBusiness Account (regular)Person Account
RepresentsCompany, household, school, orgIndividual consumer
SchemaOne Account row + many Contact rowsOne Account row + 1 backing Contact row (hidden duality)
Account.NameSet explicitly (e.g., “Acme Corp”)Auto-derived from FirstName + LastName
Person-level fieldsOn Contact (Title, Birthdate, Phone)On Account directly (PersonBirthdate, PersonEmail, etc.)
IsPersonAccountfalsetrue
Has Contacts related list?Yes — manyNo (it IS the contact)
Has Opportunities, Cases, Activities?YesYes
Record TypeStandard / business RTPerson Account RT (must be one designated as Person)
Default page layoutBusiness Account layoutPerson Account layout (distinct)
Sharing modelStandardStandard (but uses combined Account-Contact sharing)
Campaign MembershipVia ContactDirectly via Person Account
Created inAny org by defaultOnly after Person Accounts is enabled org-wide
Use caseB2B sales — selling to companiesB2C sales — selling to individuals
Storage1 Account row1 Account row + 1 hidden Contact row (effectively 2x)
Industry verticalsManufacturing, software B2B, agenciesRetail, insurance, banking, telecom consumer, healthcare

When to use Business Account

  • You sell to companies, not individuals
  • One company has many touchpoints (Contacts) — Sales Director, IT, Finance, Procurement
  • Opportunities are at the company level
  • Cases come from multiple people at the same company
  • Standard B2B CRM motion

When to use Person Account

  • You sell to individual consumers
  • Each customer is a single human, not a company with multiple stakeholders
  • The “Contact” concept doesn’t add value — there’s only one person per record
  • Industries: retail, B2C banking, insurance (personal lines), wealth management (clients), telecom (consumer lines), healthcare (patients), education (students), nonprofits (individual donors)

Hybrid orgs

Many real orgs need both:

  • Financial services — manages both corporate accounts (business banking) and personal accounts (individual customers)
  • Insurance — commercial policies + personal policies
  • Telecom — business accounts + consumer lines
  • Real estate — agency accounts + individual home buyers

In a hybrid org, both Record Types coexist on the same Account object. Reports and automation branch on IsPersonAccount or Record Type.

Field-level differences

On a Person Account, you’ll find person-specific fields prefixed with Person (or available without prefix on the Contact-side):

  • PersonEmail (on Account) / Email (on Contact)
  • PersonBirthdate
  • PersonHomePhone, PersonMobilePhone
  • PersonMailingAddress (separate from BillingAddress)
  • PersonDepartment, PersonTitle

These don’t exist on Business Accounts. Many Person fields have a Person prefix specifically so they don’t collide with Business Account fields.

Implications for relationships

Standard objects relate to Account and Contact:

  • Opportunity: has AccountId — on a Business Account, this links to the company. On a Person Account, this links to the person (the Account itself).
  • Case: has both AccountId and ContactId. For Person Accounts, both fields can be auto-populated to point to the same logical entity.
  • Custom objects: design them to reference Account if you want to support both types.

Cannot revert

The Person Accounts setting is org-wide and irreversible. Once enabled, every Account in your org is potentially a candidate, and you cannot disable the feature. Plan and test thoroughly.

Bottom line

A Business Account is a company with separate Contact records for each person; a Person Account is a consumer modeled as a single combined Account-Contact entity. Choose Business Account for B2B; choose Person Account for B2C; use both via Record Type if your org sells to both.

Verified against: Salesforce Help — Person Accounts. Last reviewed 2026-05-17.