Last Updated: June 2, 2026
salesforce ceo refers to Marc Benioff, who Salesforce lists as Chair, CEO and Co-Founder. The short facts are: the Salesforce founding year is 1999, the founding group includes Marc Benioff, Parker Harris, Frank Dominguez and Dave Moellenhoff, and Salesforce is a public company owned by its stockholders rather than one individual.
Salesforce CEO: who leads Salesforce in 2026?
The current salesforce ceo is Marc Benioff. Salesforce’s leadership page lists him as Chair, CEO & Co-Founder, and its media profile describes him as Chair, Chief Executive Officer and Co-Founder of Salesforce. That wording matters because it separates three roles that often get mixed together: executive management, board leadership and company founding status.
For Salesforce admins, developers and architects, this is not trivia. The salesforce ceo name appears in vendor questionnaires, public-company due diligence, partner decks, governance documents and executive summaries for Salesforce programs. Use Salesforce’s own leadership page as the primary source when the document needs a current title.

| Question | Answer to use in 2026 | Primary source to verify |
|---|---|---|
| Who is the salesforce ceo? | Marc Benioff | Salesforce Leadership |
| What is his full Salesforce title? | Chair, CEO & Co-Founder | Salesforce Media Library |
| What year was Salesforce founded? | 1999 | Salesforce history timeline |
| Who owns Salesforce? | Public stockholders; no single founder owns the company outright | 2025 proxy statement |
What does the Salesforce CEO role cover?
The salesforce ceo is responsible for company direction, executive leadership and accountability to the board and stockholders. The role is different from Salesforce product administration inside a customer org. An admin does not need CEO approval to configure profiles, permission sets, flows or Apex deployments. The connection is at the business layer: product strategy, trust messaging, acquisitions, platform investment and public-company governance.
In enterprise orgs, teams often include the salesforce ceo fact in steering committee material when they explain why Salesforce is a strategic platform rather than a single application. Keep the statement narrow: Marc Benioff is the current Chair, CEO and Co-Founder. Avoid turning that into unsupported claims about product roadmaps or commercial terms.
Salesforce founding timeline and founding team
The salesforce ceo topic is tied closely to the origin of the company. Salesforce’s history page says the company began in 1999 and identifies March 8, 1999 as the incorporation date. That page also names the early team working from a San Francisco apartment on Telegraph Hill.
Salesforce founding year: 1999
The salesforce founding year is 1999. Salesforce’s public history states that Marc Benioff, Parker Harris, Frank Dominguez and Dave Moellenhoff began work on the first version of the CRM product in a rented one-bedroom apartment at 1449 Montgomery Street in San Francisco. If you need a date for a compliance note, use March 8, 1999 as the incorporation date from Salesforce’s own timeline.
Do not write that the salesforce ceo alone created every part of the first product. Benioff is the best-known founder and current executive leader, but the official company history names a founding group. That distinction helps technical writers avoid over-simplified ownership and product-origin statements.
Founder of salesforce: the original founding team
The phrase founder of salesforce usually points to Marc Benioff because he remains the public face of the company and holds the CEO role. A more accurate answer is that Salesforce was founded by Marc Benioff with Parker Harris, Frank Dominguez and Dave Moellenhoff. Parker Harris also remains part of Salesforce leadership, listed as Co-Founder of Salesforce and Chief Technology Officer of Slack on the Salesforce leadership page.
- Marc Benioff: current Chair, CEO and Co-Founder.
- Parker Harris: Co-Founder and senior technology executive.
- Frank Dominguez: named in Salesforce’s 1999 founding history.
- Dave Moellenhoff: named in Salesforce’s 1999 founding history.

Who owns Salesforce?
Salesforce is a publicly traded company. The answer to who owns Salesforce is stockholders, not one founder, one CEO or one customer. Salesforce trades under the ticker symbol CRM, and ownership changes as investors buy and sell shares.
Who owns salesforce: public-company ownership
In the 2025 proxy statement, Salesforce listed several five-percent stockholders. The Vanguard Group was listed with 83,624,885 shares, or 8.7% of the class. BlackRock, Inc. was listed with 72,882,619 shares, or 7.6%. State Street Corporation was listed with 49,018,644 shares, or 5.1%. Marc Benioff was listed under directors and named executive officers with 22,796,932 shares, or 2.4%, including certain options and shares held through entities described in the filing.
Those numbers are point-in-time beneficial ownership disclosures from Salesforce’s proxy materials. Do not copy them into a customer proposal without an “as of” date. For a 2026 document, verify the latest proxy statement or SEC filing before publishing a statement about ownership.
| Owner category | Example from Salesforce 2025 proxy statement | How to describe it safely |
|---|---|---|
| Institutional stockholder | The Vanguard Group, BlackRock, State Street | Large beneficial owners reported in the proxy statement |
| Founder and executive | Marc Benioff | Chair, CEO, Co-Founder and stockholder, not sole owner |
| Public investors | Other institutions and individuals | Salesforce ownership is distributed across stockholders |
How tall is Marc Benioff?
The query how tall is marc benioff appears often because public figures attract biographical searches. The commonly cited answer is about 6 feet 5 inches, or about 196 cm. Salesforce’s official leadership bio focuses on his corporate role, founding status and public work; it does not present height as a Salesforce corporate fact.
How tall is marc benioff: what to cite
If your article or internal document answers how tall is marc benioff, separate it from verified Salesforce company facts. Cite official Salesforce pages for his title and Salesforce founding year. Treat height as a general biographical detail, not as a Salesforce platform, governance or architecture reference.

Why Salesforce teams should verify CEO and ownership facts
Salesforce teams use company facts in security reviews, procurement decks, architecture decision records and partner onboarding material. A wrong salesforce ceo title looks minor, but it signals stale documentation. Stale documentation becomes more serious when the same page also contains API limits, data residency statements or security assumptions.
Use a source-first approach for every salesforce ceo reference. For leadership, use the Salesforce leadership page. For Salesforce founding year and founding details, use Salesforce’s company history page. For ownership, use the latest proxy statement or SEC filing. For implementation guidance, use Salesforce Help, Salesforce Developer Docs and Trailhead.
Store verified company facts in Custom Metadata, not Apex constants
In some enterprise orgs, teams maintain a small set of approved company facts for proposal automation, document generation or partner portals. Use Custom Metadata Types when the data should be deployable and versioned with metadata. Salesforce documents that custom metadata can be accessed programmatically with SOQL.
public with sharing class CompanyFactService {
public class CompanyFact {
@AuraEnabled public String key;
@AuraEnabled public String value;
@AuraEnabled public String sourceUrl;
@AuraEnabled public Date verifiedOn;
}
@AuraEnabled(cacheable=true)
public static List<CompanyFact> getActiveFacts() {
List<CompanyFact> results = new List<CompanyFact>();
for (Company_Fact__mdt fact : [
SELECT DeveloperName, Value__c, Source_URL__c, Verified_On__c
FROM Company_Fact__mdt
WHERE Is_Active__c = true
ORDER BY DeveloperName
]) {
CompanyFact item = new CompanyFact();
item.key = fact.DeveloperName;
item.value = fact.Value__c;
item.sourceUrl = fact.Source_URL__c;
item.verifiedOn = fact.Verified_On__c;
results.add(item);
}
return results;
}
}
This example uses one SOQL query and no DML. Keep it that way. Salesforce governor limits include a 100 SOQL query limit for synchronous Apex in an org transaction, so do not query the same fact record inside loops. When exposing ordinary Salesforce records through Apex controllers, enforce object and field permissions as Salesforce documents for Apex security. For custom metadata used as reference content, still review who can edit the metadata and who can deploy changes.
Use an effective date for Salesforce CEO facts
Do not store “Marc Benioff is the salesforce ceo” without a verification date. Store a value, source URL and date verified. That lets a release manager review facts during quarterly release work, especially before a public portal, Experience Cloud page or document-generation template goes live.
Common errors with Salesforce CEO facts
The most common error is saying Marc Benioff owns Salesforce. He owns Salesforce shares and serves as Chair, CEO and Co-Founder, but Salesforce is a public company with many stockholders. The second error is naming only one founder when the official Salesforce history lists a founding team. The third error is using old co-CEO wording from prior years. As of the official 2026 leadership references reviewed for this article, Marc Benioff is listed as Chair, CEO and Co-Founder.
Another error is mixing Salesforce corporate facts with Salesforce platform facts. A CEO title does not define your org’s sharing model, API access, data residency controls or Apex limits. Use Apex governor limits in Salesforce, Salesforce Admin tutorials, Salesforce architecture guidance and Salesforce Data Cloud tutorials for implementation topics.
Frequently Asked Questions
Who is the salesforce ceo in 2026?
The salesforce ceo in 2026 is Marc Benioff. Salesforce lists him as Chair, CEO and Co-Founder on its official leadership page.
What is the salesforce founding year?
The salesforce founding year is 1999. Salesforce’s company history identifies March 8, 1999 as the incorporation date and describes the first CRM work in a San Francisco apartment.
Who is the founder of Salesforce?
The founding-team answer should include Marc Benioff, Parker Harris, Frank Dominguez and Dave Moellenhoff. Marc Benioff is the best-known co-founder because he remains Chair and CEO.
Who owns Salesforce?
Salesforce is owned by its stockholders. The company is publicly traded, so ownership is distributed across institutional investors, individual investors, executives and other stockholders. The latest proxy statement is the right source for current ownership percentages.
How tall is Marc Benioff?
The commonly cited answer to how tall is Marc Benioff is about 6 feet 5 inches, or about 196 cm. Salesforce’s official bio does not use height as a company fact, so cite official Salesforce sources for his role and use care with general biography details.