Every Exam PrepFREE EXAM PREP
Ask AI
CHEAT SHEET · SALESFORCE ADMINISTRATOR

Salesforce Administrator Cheat Sheet.

Review the key concepts, then download the PDF for offline study.

Download the PDF
Weighted to the current exam outline·15-minute scanVerified against the official content outline
Written by Every Exam Prep Editorial TeamSource and review policyPublished July 18, 2026Updated August 16, 2026
Drill weak spots →
01

Quick facts

the numbers to know before exam day
60
Questions
1h 45m
Time limit
68% (English version); 65%
Passing score
$200
Exam fee
Salesforce
Governing body
02

Full write-up

the complete guide, in prose

Salesforce renamed this credential to Salesforce Certified Platform Administrator and rebuilt the outline effective December 15, 2025: Workflow/Process Automation became Automation, and an Agentforce section was added. Everything below reflects the current guide, aligned to Summer '25.

Exam at a glance

ItemValue
CredentialSalesforce Certified Platform Administrator
Questions60 scored multiple-choice + up to 5 unscored (65 items)
Time105 minutes
Passing score68% (English) · 65% (Japanese)
Registration / retake$200 / $100 USD, plus applicable taxes
DeliveryProctored — onsite test center or online
PrerequisitesNone. Salesforce recommends 6+ months of admin experience
Release alignmentSummer '25
UpkeepTrailhead maintenance module; miss it and the credential goes inactive, not revoked

Exam outline and weights

Eight sections. The "questions" column is the weight applied to 60 scored items — use it to budget study time.

SectionWeight≈ Questions
Data and Analytics Management17%10
Configuration and Setup15%9
Object Manager and Lightning App Builder15%9
Automation15%9
Sales and Marketing Applications10%6
Service and Support Applications10%6
Productivity and Collaboration10%6
Agentforce8%5

The Agentforce section covers capabilities and use cases: when applying AI is appropriate, agent security, and troubleshooting agent permissions. An agent acts through a user and is bound by that user's access.

Record access: the security model in order

This is the single most tested model on the exam. Access is evaluated bottom-up: Organization-Wide Defaults set the floor, and every layer above can only open access further. Salesforce states it plainly — other record access features "can't be used to restrict access to records beyond what was originally specified with the organization-wide sharing defaults." A user's effective access is the most permissive grant they receive.

#LayerWhat it doesDirectionCan it restrict?
1Organization-Wide DefaultsBaseline access to records the user does not own. Setup → Sharing SettingsSets the floorYes — the only layer that can
2Role HierarchyManagers inherit access to records owned by users beneath themUpward onlyNo
3Sharing RulesAutomatic, rule-based grants to public groups, roles, or roles-and-subordinates. Owner-based or criteria-based; grants Read Only or Read/WriteLateralNo
4Manual SharingOne record, one time, via the Sharing button. Only the owner, anyone above the owner in the hierarchy, or an admin can do itAd hocNo
5TeamsNamed users added to one record with a role and an access level — Account, Opportunity and Case teamsPer recordNo
  • Manual sharing is only available when the OWD is more restrictive than Public Read/Write. It is dropped automatically when record ownership changes.
  • Grant Access Using Hierarchies is permanently on for standard objects; you can switch it off for custom objects only.
  • View All / Modify All (per object) and View All Data / Modify All Data (org-wide) bypass sharing entirely. They are object/user permissions, not sharing.
  • Record-level sharing never overrides field-level security. If FLS hides a field, the record's sharing is irrelevant.

Organization-wide default values

SettingNon-owners canWhere it applies
PrivateNothing — owner and role hierarchy above onlyMost objects
Public Read OnlyView and reportMost objects
Public Read/WriteView and editMost objects
Public Read/Write/TransferView, edit, change ownerLeads and Cases only
Controlled by ParentWhatever the parent record allowsMaster-detail children and standard child objects
Public Full AccessView, edit, transfer, delete, reportCampaigns
View Only / UseSee or use entriesPrice Books

Profiles vs permission sets vs groups vs muting

Salesforce is moving to a permission-set-led model: keep profiles thin, grant everything else additively.

ToolPer userGrantsRevokesDecision rule
ProfileExactly one, requiredBaseline accessImplicitly (by omission)Use only for what lives nowhere else: Login Hours, Login IP Ranges, default app, password policies. Keep it minimal.
Permission SetManyAdditional access on top of the profileNeverGrant the exception. One capability per set, named for what it grants.
Permission Set GroupManyA bundle of permission sets, assigned as one unitNeverModel a job persona from reusable sets instead of one giant set.
Muting Permission SetLives inside one groupNothingTurns a permission off within that group onlyUse when a persona needs most of a set but not one permission.
  • Muting is scoped: users assigned the same permission set directly are unaffected, and permissions granted by the profile still stand.
  • Muting cascades to dependents — muting Delete also mutes Modify All Records. But muting Modify All Data does not automatically mute object permissions.

Record types vs page layouts vs Lightning record pages

ArtifactControlsDoes NOT controlAssigned by
Record TypeWhich picklist values are available, which business process applies (Sales / Support / Lead / Solution), and which layout the user getsField-level security; which fields existProfile or permission set
Page LayoutField placement, layout-required and read-only, related lists, buttons and actionsCannot override FLS — FLS always winsProfile × record type
Lightning Record PageThe Lightning Experience page: components, tabs, regions, dynamic component visibility. Built in Lightning App BuilderField-level security; picklist availabilityOrg default, app default, or app + record type + profile
Dynamic FormsBreaks layout fields into individually placeable, conditionally visible fields and sectionsFLSOn the Lightning record page
Compact LayoutHighlights-panel fields and the mobile cardAnything in the record bodyPer record type

Layout-required is UI-only; a field marked Required in Object Manager is enforced everywhere, including the API.

Automation: what to build with what

Workflow Rules and Process Builder reached end of support on December 31, 2025. Existing ones may keep executing, but Salesforce provides no support or bug fixes. Build everything new in Flow, and use Setup → Migrate to Flow to convert what you have.

Flow typeTriggerUse it for
Screen FlowA user launches it — Lightning page, action, utility bar, Experience CloudGuided data entry, wizards, anything needing input
Record-Triggered, before saveCreate/update, before the record is committedSetting fields on the triggering record itself. Fastest; no DML needed
Record-Triggered, after saveCreate/update, after commit, same transactionRelated records, other objects, emails, subflows, scheduled paths
Record-Triggered, deleteRecord deletionCleanup and cross-object housekeeping
Scheduled-TriggeredDate, time and frequency, optionally over a filtered record setNightly batch updates, renewal sweeps
Platform Event-TriggeredA platform event message is publishedEvent-driven integrations
Autolaunched (no trigger)Called by another flow, Apex, a button or the APIReusable subflows

Order of execution matters on the exam: a before save flow runs before validation rules, so a field it sets can still fail validation.

RequirementBuild it with
Block a save with a messageValidation Rule
Update fields, create/update related records, send email, call a subflowFlow (record-triggered)
Collect input from a user step by stepScreen Flow
Multi-step submit / approve / reject with a locked record, approver history and recallApproval Process
Complex bulk logic, intricate callouts, anything declarative tools cannot expressApex
Anything you would previously have built as a workflow or processFlow

Data management

Import Wizard vs Data Loader

Data Import WizardData Loader
WhereIn-browser, Setup → Data Import WizardInstalled client app, plus a Windows command line
VolumeUp to 50,000 records at a time50,000 to 150,000,000 records with Bulk API 2.0
ObjectsAccounts, contacts, leads, solutions, campaign members, person accounts, custom objectsNearly all standard and custom objects
Operationsinsert, update, upsertinsert, update, upsert, delete, hard delete, export, export all
Duplicate matchingYes — by Salesforce ID, name and site, email, or external IDNo built-in matching
SchedulingNoYes, via the command line

Pick the Wizard for a small, supported-object load that needs dedupe. Pick Data Loader for volume, unsupported objects, deletes, exports, or anything recurring.

Relationships and roll-ups

LookupMaster-DetailJunction (many-to-many)
StructureLoose link between two objectsMaster controls the detail recordCustom object with two master-detail relationships
Required?Optional by defaultAlways required on the detail layoutBoth are required
OwnershipChild has its own OwnerDetail has no Owner field — it inherits the master'sInherits the primary (first) master
SharingIndependentDetail inherits the master's sharing and securityInherits the primary master
Delete the parentChild survivesCascade delete — details and subdetails go tooDeleting either master deletes the junction record
Roll-up summaryNot supportedSupported on the masterSupported on both masters
ReparentingAllowedOff by default; enable Allow reparentingSame as master-detail

Official limit: each custom object can have up to two master-detail relationships and up to 40 total relationships. A junction object therefore uses both master-detail slots. The first master-detail you create is the primary, and it drives the junction record's ownership, sharing and look and feel. Roll-up summary fields support COUNT, SUM, MIN and MAX.

Reports and dashboards

FormatGroupingChartUse for
TabularNoneNoFlat lists and exports. Needs a row limit to feed a dashboard
SummaryUp to 3 row groupingsYesSubtotals by group — the everyday format
MatrixRow groupings plus up to 2 column groupingsYesTwo-dimensional pivot comparisons
JoinedUp to 5 blocks, each with its own report type, columns and filtersYesSide-by-side views across different report types

Report types decide which records are even eligible: a with report type returns only parent records that have related child records, while with or without returns parents either way. Dashboards run either as a specified user (everyone sees identical data) or as the logged-in user — a dynamic dashboard, where each viewer sees only what their own access allows.

LimitValue
Rows displayed in a report2,000
Joined report blocks / columns per block5 / 100
Bucket fields per report5 (up to 20 buckets, 20 values each)
Widgets per dashboard25 — max 20 charts and tables, 3 images, 25 rich text
Filters per dashboard / values per filter5 / 50

Night-before checklist

  • Recite the sharing order — OWD → Role Hierarchy → Sharing Rules → Manual Sharing → Teams — and that only OWD restricts.
  • Manual sharing requires an OWD tighter than Public Read/Write.
  • Public Read/Write/Transfer = Leads and Cases. Public Full Access = Campaigns.
  • Profile = one per user and the floor; permission sets and groups only add; muting subtracts inside one group.
  • Record type drives picklist values and business process; page layout drives placement; FLS beats both.
  • Workflow Rules and Process Builder are out of support — the answer is almost always Flow.
  • before save for the triggering record, after save for anything else.
  • Over 50,000 records, or a delete or export? Data Loader.
  • Master-detail: required, cascade delete, inherited sharing, roll-ups, max two per object.
  • "Without code" or "least amount of effort" in a scenario is choosing the declarative answer for you.

Frequently asked questions

What's the format of the Salesforce Certified Administrator exam, and how much time do I get?

<h3>Exam format at a glance</h3><p>The exam consists of 60 multiple-choice questions plus up to five additional unscored questions, and you're allotted 105 minutes to complete it. It's a proctored exam delivered either onsite at a testing center or in an online proctored environment.</p><p>With 60 scored questions in 105 minutes, that works out to roughly 1.75 minutes per question — enough time to read scenario-based items carefully, but plan to flag tougher questions and move on so you can circle back rather than stalling. The unscored questions are indistinguishable from scored ones, so treat every question as if it counts.</p>

What score do I need to pass, and how much does the exam cost?

<h3>Passing score and fees</h3><p>The passing score is 68% for the English version and 65% for the Japanese version. The registration fee is US$200 plus applicable taxes, and if you don't pass, the retake fee is US$100 plus applicable taxes.</p><p>A 68% threshold on 60 scored questions means you can miss around 19 questions and still pass the English exam — but you shouldn't aim for the minimum. Because each retake costs another US$100, budgeting your study time to comfortably clear the bar on the first attempt is far cheaper than a second sitting.</p>

What topics does the exam cover, and how much experience should I have first?

<h3>Content domains and prerequisites</h3><p>The current exam guide aligns to the Summer '25 release and organizes the exam into eight content domains: Configuration and Setup; Object Manager and Lightning App Builder; Sales and Marketing Applications; Service and Support Applications; Productivity and Collaboration; Data and Analytics Management; Automation; and Agentforce. Salesforce recommends six or more months of experience as a Salesforce Administrator before attempting the exam.</p><p>Since the guide is tied to the Summer '25 release, study current-release features rather than older documentation — and note that Agentforce being called out as its own domain signals how much weight recent AI-driven capabilities now carry. Hands-on time in an org during that recommended six-plus months is the best way to internalize the Configuration, Object Manager, and Automation domains, which reward practical familiarity over memorization.</p>

How long should I plan to study, and do I have to renew the certification?

<h3>Study time and keeping the credential active</h3><p>The recommended certification Trailmix is estimated at approximately 60 hours of learning. Once you're certified, the credential requires completion of one maintenance badge per year to remain active; these maintenance badges align with the three annual Salesforce release cycles — Spring, Summer, and Winter. Each maintenance badge is due one year from when it becomes available, and the certification expires if you don't complete it by the deadline.</p><p>At roughly 60 hours, studying about 10 hours a week puts you on pace for the exam in around six weeks — pair that self-study estimate with the recommended six-plus months of hands-on admin experience. After passing, the once-a-year maintenance badge is a lightweight commitment that keeps your credential current with the three-times-yearly release cadence, so set a calendar reminder to avoid an unwanted expiration.</p>

Sources

  1. 1.Salesforce Certified Administrator Exam Guide (current)Salesforce (accessed Jul 18, 2026)
  2. 2.Salesforce Certified Administrator Exam Guide (PDF, Exam Outline)Salesforce (accessed Jul 18, 2026)

Official sources

Primary documents used to verify the exam details shown on this page.

Last verified against the official exam content outline: