SlideShare una empresa de Scribd logo
1 de 43
Descargar para leer sin conexión
6 Reporting Formulas
That Will Delight Your Users
April 5, 2017
Today’s Speakers
Steve Molis
Salesforce Admin
@SteveMoForce
Geoff Flynn
Principal Consultant
Slalom
@GeoffreyFlynn2
Michael Gerholdt
Director, Admin Evangelism
Salesforce
@mikegerholdt
Forward-Looking Statements
​ Statement under the Private Securities Litigation Reform Act of 1995:
​ This presentation may contain forward-looking statements that involve risks, uncertainties, and assumptions. If any such uncertainties materialize or
if any of the assumptions proves incorrect, the results of salesforce.com, inc. could differ materially from the results expressed or implied by the
forward-looking statements we make. All statements other than statements of historical fact could be deemed forward-looking, including any
projections of product or service availability, subscriber growth, earnings, revenues, or other financial items and any statements regarding strategies
or plans of management for future operations, statements of belief, any statements concerning new, planned, or upgraded services or technology
developments and customer contracts or use of our services.
​ The risks and uncertainties referred to above include – but are not limited to – risks associated with developing and delivering new functionality for
our service, new products and services, our new business model, our past operating losses, possible fluctuations in our operating results and rate of
growth, interruptions or delays in our Web hosting, breach of our security measures, the outcome of any litigation, risks associated with completed
and any possible mergers and acquisitions, the immature market in which we operate, our relatively limited operating history, our ability to expand,
retain, and motivate our employees and manage our growth, new releases of our service and successful customer deployment, our limited history
reselling non-salesforce.com products, and utilization and selling to larger enterprise customers. Further information on potential factors that could
affect the financial results of salesforce.com, inc. is included in our annual report on Form 10-K for the most recent fiscal year and in our quarterly
report on Form 10-Q for the most recent fiscal quarter. These documents and others containing important disclosures are available on the SEC
Filings section of the Investor Information section of our Web site.
​ Any unreleased services or features referenced in this or other presentations, press releases or public statements are not currently available and may
not be delivered on time or at all. Customers who purchase our services should make the purchase decisions based upon features that are currently
available. Salesforce.com, inc. assumes no obligation and does not intend to update these forward-looking statements.
Get Social with Us!
@SalesforceAdmns
#AwesomeAdmin
Salesforce Admins
The video will be posted to YouTube
& the webinar recap page
(same URL as registration).
This webinar is being recorded!
Join the Admin Webinar Group for Q&A!
​ Ask your questions in the group!
•  We have team members on hand to answer
questions in the webinar group.
Stick around for live Q&A at the end!
•  Speakers will tackle more questions at the end,
time-allowing
bit.ly/AdminWebinarGroup
Today’s Agenda
•  Getting Started With Formulas
•  The 6 Formulas
•  Resources
•  Q&A
Getting Started
With Formulas
3 Handy Hints About Formulas
1.  Formula fields allow you to rethink your reporting requests
2.  Formula fields aren’t just for page layouts
3.  Formula fields work the same in both Lightning Experience and
Classic
The Formula Editor: Where the Magic Happens
“Nobody has ever gotten
rabies by clicking these.
They will not bite you!!!”
- Steve Mo
It’s
Magic!
Activity Type
FORMULA 1
The Problem
We need to know which objects have related activities to
ensure our reps are focusing on the right areas.
However…
the standard activity reporting won’t allow you to group by the
object the activities are logged against. We need a
solution!
Formula 1: Activity Type
CASE(
LEFT(WhatId, 3),
"001", "Account",
"500", "Case",
"006", "Opportunity",
"a00", "Favourite Movies",
"a02", "Actors",
"Other"
)
​ Benefits:
1.  Easier to know what Activities are related to
2.  Activity reporting at a glance
3.  Knowing where effort is being focused
This formula represents the
Object of the Related To
Record
Formula 1: Activity Type
FORMULA 2
Amount by
Month or Quarter
The Problem
Sometimes you want to group by the same date twice in the same
report, or you want to group by Month and then by Year, or you
want to show the last 3 months individually, but anything before
that at the quarterly level only.
However…
the standard report builder doesn’t necessarily allow that level of
flexibility, especially when it comes to grouping by dates.
We need a
solution!
Formula 2: Amount by Month or Quarter
February Amount:
IF(
MONTH(CloseDate) = 2,
Amount,
0
)
Q4 Amount
IF(
MONTH(CloseDate) >= 10,
Amount,
0
)
​ Benefits:
1.  Custom timeframes allow your users
to avoid complex filters
2.  Show multiple timeframes at different
aggregate values
3.  Flexibility of a summary report with
the look of a matrix report
This formula gives you the
ability to pull “XX amount”
on demand
Formula 2: Amount by Month or Quarter
FORMULA 3
The “Ultimate”
Parent Account
The Problem
We need to display the Opportunity Sales Pipeline of an entire
Corporation that spans multiple Parent and Subsidiary Accounts
across several tiers of Parent and Subsidiary Accounts.
However…
the Standard Parent Account Field only goes up 1 Level and returns
the name of the Account 1 Level above that Account. It also
displays a blank value if there is no Parent of that Account.
We need a
solution!
Current Opportunity Pipeline Report
What should
we do?
The Solution
Create a custom Formula Field on the
Account Object that will return the name of
the Top Parent Account in the Account
Hierarchy, no matter where in the Account
Hierarchy the current Account is located
(even if there is no Account Hierarchy).
Formula 3: The ‘Ultimate’ Parent Account
Create a custom Cross-Object
Formula(Text) field to return the
Account Name from the
Parent.Account.
Formula 3: The ‘Ultimate’ Parent Account
Summarize information by the
Top “Ultimate” Parent Account
in a multi-level Account
Formula 3: The ‘Ultimate’ Parent Account
BLANKVALUE(Parent.Parent.Parent.Parent.Parent.Name,
BLANKVALUE(Parent.Parent.Parent.Parent.Name,
BLANKVALUE(Parent.Parent.Parent.Name,
BLANKVALUE(Parent.Parent.Name,
BLANKVALUE(Parent.Name,
Name)))))
Formula:
So smart!
Formula 3: The ‘Ultimate’ Parent Account
Formula 3: The ‘Ultimate’ Parent Account
FORMULAS 4 & 5
Count of Open &
Lost Opportunities
The Problem
We need to display the number of Open Opportunities in the
Sales Pipeline to be able to quantify the “health” of our Sales
Pipeline and ensure that we have enough new Opportunities
coming in. We also need to quantify the number of Lost
Opportunities so that we can measure customer attrition and
identify areas that need attention and corrective measures.
However…
the Opportunity Object has fields that count whether an Opportunity
is Closed or Won, but not Open and Lost.
We need a
solution!
Current Closed/Won Opportunities Report
The Solution
The Opportunity Stage field has a setting called
“Type”. It sets 2 hidden Checkbox fields called
IsClosed and IsWon.
It sets them to either TRUE or FALSE. And
using a couple of Formula (Checkbox) fields we
can solve our problem.
Formulas 4&5: Count of Open and Lost Opportunities
Formulas 4&5: Count of Open and Lost Opportunities
IsClosed = FALSE
alternately
NOT( IsClosed )
Create a custom field
Datatype: Formula
Return Type: Checkbox
Formula: 
Create a custom field
Datatype: Formula
Return Type: Checkbox
Formula: 
AND( IsClosed = TRUE,
IsWon = FALSE)
alternately
AND( IsClosed,
NOT( IsWon ) )
Using some simple Formula Checkbox
fields we can turn IsClosed into “IsOpen”
and IsWon into “IsLost”
Formulas 4&5: Count of Open and Lost Opportunities
Formulas 4&5: Count of Open and Lost Opportunities
Wikid Smaht!
FORMULA 6
A Different Kind
of Bucket Field
What are Buckets?
​ Buckets help you sort, organize and understand large
amounts of data in Salesforce quickly and easily.
​ You can create 3 types of buckets, grouping your data
without having to create custom formulas:
1.  Numeric
2.  Picklist
3.  Text
So cool!
The Problem
We need to create a formula field to use as a bucket which gives
us more flexibility than a bucket field on a report, or we will find
ourselves continually using the same bucket field across many
reports.
However…
the standard report bucket field needs to be created
individually for each report.
We need a
solution!
Formula 6: A Different Kind of Bucket Field
IF(
Amount > 500000,
“Large Deal”,
IF(
Amount > 250000,
“Standard Deal”,
“Small Potatoes”
)
)
Benefits:
1.  Easier to build
2.  Easier to maintain across reports
3.  Easier to set up for users to leverage as a
regular field value in their own reports
This formula is a way to create a
report ‘bucket’ that can be reused
across multiple reports and only
adjusted once.
Formula 6: A Different Kind of Bucket Field
Resources
Additional Resources
Trailhead modules for guided learning: Formulas &
Validations, Advanced Formulas, Reports & Dashboards
trailhead.salesforce.com
The Success Community
success.salesforce.com
Formula Operators and Functions
bit.ly/formulaoperatorsandfunctions
Q&A
bit.ly/AdminWebinarGroup
Survey
bit.ly/awsurvey-6formulas
Slides
bit.ly/6reportingformulas
Wrapping Up
6 Reporting FormulasThat Will Delight Your Users

Más contenido relacionado

La actualidad más candente

Project Planning with Jira
Project Planning with JiraProject Planning with Jira
Project Planning with JiraParvez Misarwala
 
My Trailhead Accelerator Presentation
My Trailhead Accelerator PresentationMy Trailhead Accelerator Presentation
My Trailhead Accelerator PresentationRoy Moore
 
Agile project management
Agile project managementAgile project management
Agile project managementeng100
 
The Essence of Sprint Planning : Presented by Sprint Planning
The Essence of Sprint Planning : Presented by Sprint PlanningThe Essence of Sprint Planning : Presented by Sprint Planning
The Essence of Sprint Planning : Presented by Sprint PlanningoGuild .
 
Agile Performance Metrics
Agile Performance MetricsAgile Performance Metrics
Agile Performance MetricsACM
 
Business Process Management: Implementing Continuous Improvement in Your Orga...
Business Process Management: Implementing Continuous Improvement in Your Orga...Business Process Management: Implementing Continuous Improvement in Your Orga...
Business Process Management: Implementing Continuous Improvement in Your Orga...Henry Chandra
 
Introduction to SAFe, the Scaled Agile Framework
Introduction to SAFe, the Scaled Agile FrameworkIntroduction to SAFe, the Scaled Agile Framework
Introduction to SAFe, the Scaled Agile Frameworksrondal
 
Change Management Implementations Powerpoint Presentation Slides
Change Management Implementations Powerpoint Presentation SlidesChange Management Implementations Powerpoint Presentation Slides
Change Management Implementations Powerpoint Presentation SlidesSlideTeam
 
Top 10 Agile Metrics
Top 10 Agile MetricsTop 10 Agile Metrics
Top 10 Agile MetricsXBOSoft
 
Agile Project Management for IT Projects
Agile Project Management for IT ProjectsAgile Project Management for IT Projects
Agile Project Management for IT Projectsrachna_nainani
 
Scrum 101
Scrum 101Scrum 101
Scrum 101beLithe
 
User Story Mapping in Practice
User Story Mapping in PracticeUser Story Mapping in Practice
User Story Mapping in PracticeSteve Rogalsky
 
Prioritizing Your Product Backlog
Prioritizing Your Product BacklogPrioritizing Your Product Backlog
Prioritizing Your Product BacklogMike Cohn
 
Team Topologies - how and why to design your teams - AllDayDevOps 2017
Team Topologies - how and why to design your teams - AllDayDevOps 2017Team Topologies - how and why to design your teams - AllDayDevOps 2017
Team Topologies - how and why to design your teams - AllDayDevOps 2017Matthew Skelton
 
Introduction To Scrum
Introduction To ScrumIntroduction To Scrum
Introduction To ScrumDave Neuman
 

La actualidad más candente (20)

Project Planning with Jira
Project Planning with JiraProject Planning with Jira
Project Planning with Jira
 
My Trailhead Accelerator Presentation
My Trailhead Accelerator PresentationMy Trailhead Accelerator Presentation
My Trailhead Accelerator Presentation
 
Introduction to Agile and Scrum
Introduction to Agile and ScrumIntroduction to Agile and Scrum
Introduction to Agile and Scrum
 
Agile
AgileAgile
Agile
 
Agile project management
Agile project managementAgile project management
Agile project management
 
Effective User Stories
Effective User StoriesEffective User Stories
Effective User Stories
 
The Essence of Sprint Planning : Presented by Sprint Planning
The Essence of Sprint Planning : Presented by Sprint PlanningThe Essence of Sprint Planning : Presented by Sprint Planning
The Essence of Sprint Planning : Presented by Sprint Planning
 
Agile Performance Metrics
Agile Performance MetricsAgile Performance Metrics
Agile Performance Metrics
 
Business Process Management: Implementing Continuous Improvement in Your Orga...
Business Process Management: Implementing Continuous Improvement in Your Orga...Business Process Management: Implementing Continuous Improvement in Your Orga...
Business Process Management: Implementing Continuous Improvement in Your Orga...
 
Introduction to SAFe, the Scaled Agile Framework
Introduction to SAFe, the Scaled Agile FrameworkIntroduction to SAFe, the Scaled Agile Framework
Introduction to SAFe, the Scaled Agile Framework
 
Change Management Implementations Powerpoint Presentation Slides
Change Management Implementations Powerpoint Presentation SlidesChange Management Implementations Powerpoint Presentation Slides
Change Management Implementations Powerpoint Presentation Slides
 
Top 10 Agile Metrics
Top 10 Agile MetricsTop 10 Agile Metrics
Top 10 Agile Metrics
 
Agile Project Management for IT Projects
Agile Project Management for IT ProjectsAgile Project Management for IT Projects
Agile Project Management for IT Projects
 
Scrum 101
Scrum 101Scrum 101
Scrum 101
 
User Story Mapping in Practice
User Story Mapping in PracticeUser Story Mapping in Practice
User Story Mapping in Practice
 
An Overview of SAFe
An Overview of SAFeAn Overview of SAFe
An Overview of SAFe
 
Prioritizing Your Product Backlog
Prioritizing Your Product BacklogPrioritizing Your Product Backlog
Prioritizing Your Product Backlog
 
Team Topologies - how and why to design your teams - AllDayDevOps 2017
Team Topologies - how and why to design your teams - AllDayDevOps 2017Team Topologies - how and why to design your teams - AllDayDevOps 2017
Team Topologies - how and why to design your teams - AllDayDevOps 2017
 
Introduction To Scrum
Introduction To ScrumIntroduction To Scrum
Introduction To Scrum
 
Scrum cheat sheet
Scrum cheat sheetScrum cheat sheet
Scrum cheat sheet
 

Destacado

Salesforce Admin's guide : the data loader from the command line
Salesforce Admin's guide : the data loader from the command lineSalesforce Admin's guide : the data loader from the command line
Salesforce Admin's guide : the data loader from the command lineCyrille Coeurjoly
 
DF17 Admin Track Speaker Insights
DF17 Admin Track Speaker InsightsDF17 Admin Track Speaker Insights
DF17 Admin Track Speaker InsightsSalesforce Admins
 
2016 Opportunity Process 111116
2016 Opportunity Process 1111162016 Opportunity Process 111116
2016 Opportunity Process 111116Randi Thompson
 
Using Personas for Salesforce Accessibility and Security
Using Personas for Salesforce Accessibility and SecurityUsing Personas for Salesforce Accessibility and Security
Using Personas for Salesforce Accessibility and SecuritySalesforce Admins
 
Webinar: Take Control of Your Org with Salesforce Optimizer
Webinar: Take Control of Your Org with Salesforce OptimizerWebinar: Take Control of Your Org with Salesforce Optimizer
Webinar: Take Control of Your Org with Salesforce OptimizerSalesforce Admins
 
Get Nerdy with Lightning Experience Page Layouts
Get Nerdy with Lightning Experience Page LayoutsGet Nerdy with Lightning Experience Page Layouts
Get Nerdy with Lightning Experience Page LayoutsSalesforce Admins
 
How to Build an AppExchange Strategy
How to Build an AppExchange StrategyHow to Build an AppExchange Strategy
How to Build an AppExchange StrategySalesforce Admins
 
Importing data to salesforce
Importing data to salesforceImporting data to salesforce
Importing data to salesforceNetStronghold
 
Take Security to the Next Level w/ Lightning Login
Take Security to the Next Level w/ Lightning Login Take Security to the Next Level w/ Lightning Login
Take Security to the Next Level w/ Lightning Login Salesforce Admins
 
Webinar Coding for Salesforce Admins
Webinar Coding for Salesforce AdminsWebinar Coding for Salesforce Admins
Webinar Coding for Salesforce AdminsSalesforce Admins
 
How Salesforce Launched Lightning in 7 Steps
How Salesforce Launched Lightning in 7 StepsHow Salesforce Launched Lightning in 7 Steps
How Salesforce Launched Lightning in 7 StepsSalesforce Admins
 
Build Your Lightning Rollout Plan - September 2017
Build Your Lightning Rollout Plan - September 2017Build Your Lightning Rollout Plan - September 2017
Build Your Lightning Rollout Plan - September 2017Salesforce Admins
 

Destacado (13)

Salesforce Admin's guide : the data loader from the command line
Salesforce Admin's guide : the data loader from the command lineSalesforce Admin's guide : the data loader from the command line
Salesforce Admin's guide : the data loader from the command line
 
DF17 Admin Track Speaker Insights
DF17 Admin Track Speaker InsightsDF17 Admin Track Speaker Insights
DF17 Admin Track Speaker Insights
 
2016 Opportunity Process 111116
2016 Opportunity Process 1111162016 Opportunity Process 111116
2016 Opportunity Process 111116
 
Using Personas for Salesforce Accessibility and Security
Using Personas for Salesforce Accessibility and SecurityUsing Personas for Salesforce Accessibility and Security
Using Personas for Salesforce Accessibility and Security
 
Webinar: Take Control of Your Org with Salesforce Optimizer
Webinar: Take Control of Your Org with Salesforce OptimizerWebinar: Take Control of Your Org with Salesforce Optimizer
Webinar: Take Control of Your Org with Salesforce Optimizer
 
Get Nerdy with Lightning Experience Page Layouts
Get Nerdy with Lightning Experience Page LayoutsGet Nerdy with Lightning Experience Page Layouts
Get Nerdy with Lightning Experience Page Layouts
 
How to Build an AppExchange Strategy
How to Build an AppExchange StrategyHow to Build an AppExchange Strategy
How to Build an AppExchange Strategy
 
Importing data to salesforce
Importing data to salesforceImporting data to salesforce
Importing data to salesforce
 
Introduction to Flow
Introduction to FlowIntroduction to Flow
Introduction to Flow
 
Take Security to the Next Level w/ Lightning Login
Take Security to the Next Level w/ Lightning Login Take Security to the Next Level w/ Lightning Login
Take Security to the Next Level w/ Lightning Login
 
Webinar Coding for Salesforce Admins
Webinar Coding for Salesforce AdminsWebinar Coding for Salesforce Admins
Webinar Coding for Salesforce Admins
 
How Salesforce Launched Lightning in 7 Steps
How Salesforce Launched Lightning in 7 StepsHow Salesforce Launched Lightning in 7 Steps
How Salesforce Launched Lightning in 7 Steps
 
Build Your Lightning Rollout Plan - September 2017
Build Your Lightning Rollout Plan - September 2017Build Your Lightning Rollout Plan - September 2017
Build Your Lightning Rollout Plan - September 2017
 

Similar a 6 Reporting Formulas That Will Delight Your Users

Webinar: So You Inherited (or Created) a Mess...Now What?
Webinar: So You Inherited (or Created) a Mess...Now What?Webinar: So You Inherited (or Created) a Mess...Now What?
Webinar: So You Inherited (or Created) a Mess...Now What?Salesforce Admins
 
Learn More with SteveMo - Steve Molis
Learn More with SteveMo - Steve MolisLearn More with SteveMo - Steve Molis
Learn More with SteveMo - Steve MolisSalesforce Admins
 
Become A Formula Writing Guru in 20 Minutes by Mike Martin & Shannon Howe
Become A Formula Writing Guru in 20 Minutes by Mike Martin & Shannon HoweBecome A Formula Writing Guru in 20 Minutes by Mike Martin & Shannon Howe
Become A Formula Writing Guru in 20 Minutes by Mike Martin & Shannon HoweSalesforce Admins
 
Aan009 Contreras 091907
Aan009 Contreras 091907Aan009 Contreras 091907
Aan009 Contreras 091907Dreamforce07
 
Supercharge your Salesforce Reports and Dashboards
Supercharge your Salesforce Reports and DashboardsSupercharge your Salesforce Reports and Dashboards
Supercharge your Salesforce Reports and DashboardsNetStronghold
 
Success Services - Driving business metrics
Success Services - Driving business metrics Success Services - Driving business metrics
Success Services - Driving business metrics Salesforce_Benelux
 
Clean Data: A Journey Not a Destination
Clean Data: A Journey Not a DestinationClean Data: A Journey Not a Destination
Clean Data: A Journey Not a DestinationRingLead
 
INDORE BRANCH OF CIRC OF ICAI (1) GURMEEN.pptx
INDORE BRANCH OF CIRC OF ICAI (1) GURMEEN.pptxINDORE BRANCH OF CIRC OF ICAI (1) GURMEEN.pptx
INDORE BRANCH OF CIRC OF ICAI (1) GURMEEN.pptxVicky Kumar
 
Master the Lightning Report Builder - Service
Master the Lightning Report Builder - ServiceMaster the Lightning Report Builder - Service
Master the Lightning Report Builder - ServiceSalesforce Admins
 
Please write the paper based on the few facts I’m going to explain.docx
Please write the paper based on the few facts I’m going to explain.docxPlease write the paper based on the few facts I’m going to explain.docx
Please write the paper based on the few facts I’m going to explain.docxstilliegeorgiana
 
Salesforce Spring 17 Release Overview
Salesforce Spring 17 Release OverviewSalesforce Spring 17 Release Overview
Salesforce Spring 17 Release OverviewRoy Gilad
 
ACC 561 GENIUS Enhance Education--acc561genius.com
ACC 561 GENIUS Enhance Education--acc561genius.comACC 561 GENIUS Enhance Education--acc561genius.com
ACC 561 GENIUS Enhance Education--acc561genius.comJaseetha70
 
ACC 561 GENIUS Education Meet Success--acc561genius.com
ACC 561 GENIUS Education Meet Success--acc561genius.comACC 561 GENIUS Education Meet Success--acc561genius.com
ACC 561 GENIUS Education Meet Success--acc561genius.comJaseetha44
 
The Business of Flow - Point and Click Workflow Applications
The Business of Flow - Point and Click Workflow ApplicationsThe Business of Flow - Point and Click Workflow Applications
The Business of Flow - Point and Click Workflow ApplicationsDreamforce
 
Capital Readiness and Pre-Money Valuation
Capital Readiness and Pre-Money ValuationCapital Readiness and Pre-Money Valuation
Capital Readiness and Pre-Money ValuationJeff Greenspan
 
How to Create Top Sales Dashboards
How to Create Top Sales DashboardsHow to Create Top Sales Dashboards
How to Create Top Sales Dashboardsdreamforce2006
 
Point and Click App Building Workshop
Point and Click App Building WorkshopPoint and Click App Building Workshop
Point and Click App Building WorkshopSalesforce Developers
 
Einstein Analytics Prediction Builder
Einstein Analytics Prediction BuilderEinstein Analytics Prediction Builder
Einstein Analytics Prediction Builderrikkehovgaard
 
The Invisible Admin: Tricking Users into Adopting Salesforce - Allison Klein
The Invisible Admin: Tricking Users into Adopting Salesforce - Allison KleinThe Invisible Admin: Tricking Users into Adopting Salesforce - Allison Klein
The Invisible Admin: Tricking Users into Adopting Salesforce - Allison KleinSalesforce Admins
 

Similar a 6 Reporting Formulas That Will Delight Your Users (20)

Webinar: So You Inherited (or Created) a Mess...Now What?
Webinar: So You Inherited (or Created) a Mess...Now What?Webinar: So You Inherited (or Created) a Mess...Now What?
Webinar: So You Inherited (or Created) a Mess...Now What?
 
Learn More with SteveMo - Steve Molis
Learn More with SteveMo - Steve MolisLearn More with SteveMo - Steve Molis
Learn More with SteveMo - Steve Molis
 
Become A Formula Writing Guru in 20 Minutes by Mike Martin & Shannon Howe
Become A Formula Writing Guru in 20 Minutes by Mike Martin & Shannon HoweBecome A Formula Writing Guru in 20 Minutes by Mike Martin & Shannon Howe
Become A Formula Writing Guru in 20 Minutes by Mike Martin & Shannon Howe
 
Aan009 Contreras 091907
Aan009 Contreras 091907Aan009 Contreras 091907
Aan009 Contreras 091907
 
Supercharge your Salesforce Reports and Dashboards
Supercharge your Salesforce Reports and DashboardsSupercharge your Salesforce Reports and Dashboards
Supercharge your Salesforce Reports and Dashboards
 
Success Services - Driving business metrics
Success Services - Driving business metrics Success Services - Driving business metrics
Success Services - Driving business metrics
 
Fun with Flows - Terry Cole
Fun with Flows - Terry ColeFun with Flows - Terry Cole
Fun with Flows - Terry Cole
 
Clean Data: A Journey Not a Destination
Clean Data: A Journey Not a DestinationClean Data: A Journey Not a Destination
Clean Data: A Journey Not a Destination
 
INDORE BRANCH OF CIRC OF ICAI (1) GURMEEN.pptx
INDORE BRANCH OF CIRC OF ICAI (1) GURMEEN.pptxINDORE BRANCH OF CIRC OF ICAI (1) GURMEEN.pptx
INDORE BRANCH OF CIRC OF ICAI (1) GURMEEN.pptx
 
Master the Lightning Report Builder - Service
Master the Lightning Report Builder - ServiceMaster the Lightning Report Builder - Service
Master the Lightning Report Builder - Service
 
Please write the paper based on the few facts I’m going to explain.docx
Please write the paper based on the few facts I’m going to explain.docxPlease write the paper based on the few facts I’m going to explain.docx
Please write the paper based on the few facts I’m going to explain.docx
 
Salesforce Spring 17 Release Overview
Salesforce Spring 17 Release OverviewSalesforce Spring 17 Release Overview
Salesforce Spring 17 Release Overview
 
ACC 561 GENIUS Enhance Education--acc561genius.com
ACC 561 GENIUS Enhance Education--acc561genius.comACC 561 GENIUS Enhance Education--acc561genius.com
ACC 561 GENIUS Enhance Education--acc561genius.com
 
ACC 561 GENIUS Education Meet Success--acc561genius.com
ACC 561 GENIUS Education Meet Success--acc561genius.comACC 561 GENIUS Education Meet Success--acc561genius.com
ACC 561 GENIUS Education Meet Success--acc561genius.com
 
The Business of Flow - Point and Click Workflow Applications
The Business of Flow - Point and Click Workflow ApplicationsThe Business of Flow - Point and Click Workflow Applications
The Business of Flow - Point and Click Workflow Applications
 
Capital Readiness and Pre-Money Valuation
Capital Readiness and Pre-Money ValuationCapital Readiness and Pre-Money Valuation
Capital Readiness and Pre-Money Valuation
 
How to Create Top Sales Dashboards
How to Create Top Sales DashboardsHow to Create Top Sales Dashboards
How to Create Top Sales Dashboards
 
Point and Click App Building Workshop
Point and Click App Building WorkshopPoint and Click App Building Workshop
Point and Click App Building Workshop
 
Einstein Analytics Prediction Builder
Einstein Analytics Prediction BuilderEinstein Analytics Prediction Builder
Einstein Analytics Prediction Builder
 
The Invisible Admin: Tricking Users into Adopting Salesforce - Allison Klein
The Invisible Admin: Tricking Users into Adopting Salesforce - Allison KleinThe Invisible Admin: Tricking Users into Adopting Salesforce - Allison Klein
The Invisible Admin: Tricking Users into Adopting Salesforce - Allison Klein
 

Más de Salesforce Admins

Admin Best Practices: Dashboards for Every Admin
Admin Best Practices: Dashboards for Every AdminAdmin Best Practices: Dashboards for Every Admin
Admin Best Practices: Dashboards for Every AdminSalesforce Admins
 
Admin Best Practices: Building Useful Formulas
Admin Best Practices: Building Useful FormulasAdmin Best Practices: Building Useful Formulas
Admin Best Practices: Building Useful FormulasSalesforce Admins
 
Admin Best Practices: 3 Steps to Seamless Deployments
Admin Best Practices: 3 Steps to Seamless DeploymentsAdmin Best Practices: 3 Steps to Seamless Deployments
Admin Best Practices: 3 Steps to Seamless DeploymentsSalesforce Admins
 
Awesome Admins Automate: Integrate Flow with AI and Chatbots
Awesome Admins Automate: Integrate Flow with AI and ChatbotsAwesome Admins Automate: Integrate Flow with AI and Chatbots
Awesome Admins Automate: Integrate Flow with AI and ChatbotsSalesforce Admins
 
#AwesomeAdmins Automate: Create Triggered Flows and Batch Jobs
#AwesomeAdmins Automate:  Create Triggered Flows and Batch Jobs#AwesomeAdmins Automate:  Create Triggered Flows and Batch Jobs
#AwesomeAdmins Automate: Create Triggered Flows and Batch JobsSalesforce Admins
 
Admin Best Practices: Introducing Einstein Recommendation Builder
Admin Best Practices: Introducing Einstein Recommendation BuilderAdmin Best Practices: Introducing Einstein Recommendation Builder
Admin Best Practices: Introducing Einstein Recommendation BuilderSalesforce Admins
 
Admin Best Practices: Remove Security Risk From Your Org with a User Audit
Admin Best Practices: Remove Security Risk From Your Org with a User AuditAdmin Best Practices: Remove Security Risk From Your Org with a User Audit
Admin Best Practices: Remove Security Risk From Your Org with a User AuditSalesforce Admins
 
Essential Habits for New Admins
Essential Habits for New AdminsEssential Habits for New Admins
Essential Habits for New AdminsSalesforce Admins
 
Essential Habits for Salesforce Admins: Actionable Analytics
Essential Habits for Salesforce Admins: Actionable AnalyticsEssential Habits for Salesforce Admins: Actionable Analytics
Essential Habits for Salesforce Admins: Actionable AnalyticsSalesforce Admins
 
Essential Habits for Salesforce Admins: Security
Essential Habits for Salesforce Admins: SecurityEssential Habits for Salesforce Admins: Security
Essential Habits for Salesforce Admins: SecuritySalesforce Admins
 
Essential Habits for Salesforce Admins: Data Management
Essential Habits for Salesforce Admins: Data ManagementEssential Habits for Salesforce Admins: Data Management
Essential Habits for Salesforce Admins: Data ManagementSalesforce Admins
 
Essential Habits for Salesforce Admins: User Management
Essential Habits for Salesforce Admins: User ManagementEssential Habits for Salesforce Admins: User Management
Essential Habits for Salesforce Admins: User ManagementSalesforce Admins
 
Admin Best Practices: Explore the Power of Data with Tableau
Admin Best Practices: Explore the Power of Data with TableauAdmin Best Practices: Explore the Power of Data with Tableau
Admin Best Practices: Explore the Power of Data with TableauSalesforce Admins
 
Essential Habits for New Admins
Essential Habits for New AdminsEssential Habits for New Admins
Essential Habits for New AdminsSalesforce Admins
 
Admin trailhead Live: Leverage Einstein Search to Increase Productivity
Admin trailhead Live: Leverage Einstein Search to Increase ProductivityAdmin trailhead Live: Leverage Einstein Search to Increase Productivity
Admin trailhead Live: Leverage Einstein Search to Increase ProductivitySalesforce Admins
 
Admin Best Practices: Reports & Dashboards
Admin Best Practices: Reports & DashboardsAdmin Best Practices: Reports & Dashboards
Admin Best Practices: Reports & DashboardsSalesforce Admins
 
Trailhead Live: Essential Habits & Core Admin Responsibilities
Trailhead Live: Essential Habits & Core Admin ResponsibilitiesTrailhead Live: Essential Habits & Core Admin Responsibilities
Trailhead Live: Essential Habits & Core Admin ResponsibilitiesSalesforce Admins
 
Build AI-Powered Predictions with Einstein Prediction Builder
Build AI-Powered Predictions with Einstein Prediction BuilderBuild AI-Powered Predictions with Einstein Prediction Builder
Build AI-Powered Predictions with Einstein Prediction BuilderSalesforce Admins
 
Trailhead Live: Build an Awesome Team of Admins
Trailhead Live: Build an Awesome Team of AdminsTrailhead Live: Build an Awesome Team of Admins
Trailhead Live: Build an Awesome Team of AdminsSalesforce Admins
 
Semper Salesforce: Become a Salesforce Military Champion
Semper Salesforce: Become a Salesforce Military ChampionSemper Salesforce: Become a Salesforce Military Champion
Semper Salesforce: Become a Salesforce Military ChampionSalesforce Admins
 

Más de Salesforce Admins (20)

Admin Best Practices: Dashboards for Every Admin
Admin Best Practices: Dashboards for Every AdminAdmin Best Practices: Dashboards for Every Admin
Admin Best Practices: Dashboards for Every Admin
 
Admin Best Practices: Building Useful Formulas
Admin Best Practices: Building Useful FormulasAdmin Best Practices: Building Useful Formulas
Admin Best Practices: Building Useful Formulas
 
Admin Best Practices: 3 Steps to Seamless Deployments
Admin Best Practices: 3 Steps to Seamless DeploymentsAdmin Best Practices: 3 Steps to Seamless Deployments
Admin Best Practices: 3 Steps to Seamless Deployments
 
Awesome Admins Automate: Integrate Flow with AI and Chatbots
Awesome Admins Automate: Integrate Flow with AI and ChatbotsAwesome Admins Automate: Integrate Flow with AI and Chatbots
Awesome Admins Automate: Integrate Flow with AI and Chatbots
 
#AwesomeAdmins Automate: Create Triggered Flows and Batch Jobs
#AwesomeAdmins Automate:  Create Triggered Flows and Batch Jobs#AwesomeAdmins Automate:  Create Triggered Flows and Batch Jobs
#AwesomeAdmins Automate: Create Triggered Flows and Batch Jobs
 
Admin Best Practices: Introducing Einstein Recommendation Builder
Admin Best Practices: Introducing Einstein Recommendation BuilderAdmin Best Practices: Introducing Einstein Recommendation Builder
Admin Best Practices: Introducing Einstein Recommendation Builder
 
Admin Best Practices: Remove Security Risk From Your Org with a User Audit
Admin Best Practices: Remove Security Risk From Your Org with a User AuditAdmin Best Practices: Remove Security Risk From Your Org with a User Audit
Admin Best Practices: Remove Security Risk From Your Org with a User Audit
 
Essential Habits for New Admins
Essential Habits for New AdminsEssential Habits for New Admins
Essential Habits for New Admins
 
Essential Habits for Salesforce Admins: Actionable Analytics
Essential Habits for Salesforce Admins: Actionable AnalyticsEssential Habits for Salesforce Admins: Actionable Analytics
Essential Habits for Salesforce Admins: Actionable Analytics
 
Essential Habits for Salesforce Admins: Security
Essential Habits for Salesforce Admins: SecurityEssential Habits for Salesforce Admins: Security
Essential Habits for Salesforce Admins: Security
 
Essential Habits for Salesforce Admins: Data Management
Essential Habits for Salesforce Admins: Data ManagementEssential Habits for Salesforce Admins: Data Management
Essential Habits for Salesforce Admins: Data Management
 
Essential Habits for Salesforce Admins: User Management
Essential Habits for Salesforce Admins: User ManagementEssential Habits for Salesforce Admins: User Management
Essential Habits for Salesforce Admins: User Management
 
Admin Best Practices: Explore the Power of Data with Tableau
Admin Best Practices: Explore the Power of Data with TableauAdmin Best Practices: Explore the Power of Data with Tableau
Admin Best Practices: Explore the Power of Data with Tableau
 
Essential Habits for New Admins
Essential Habits for New AdminsEssential Habits for New Admins
Essential Habits for New Admins
 
Admin trailhead Live: Leverage Einstein Search to Increase Productivity
Admin trailhead Live: Leverage Einstein Search to Increase ProductivityAdmin trailhead Live: Leverage Einstein Search to Increase Productivity
Admin trailhead Live: Leverage Einstein Search to Increase Productivity
 
Admin Best Practices: Reports & Dashboards
Admin Best Practices: Reports & DashboardsAdmin Best Practices: Reports & Dashboards
Admin Best Practices: Reports & Dashboards
 
Trailhead Live: Essential Habits & Core Admin Responsibilities
Trailhead Live: Essential Habits & Core Admin ResponsibilitiesTrailhead Live: Essential Habits & Core Admin Responsibilities
Trailhead Live: Essential Habits & Core Admin Responsibilities
 
Build AI-Powered Predictions with Einstein Prediction Builder
Build AI-Powered Predictions with Einstein Prediction BuilderBuild AI-Powered Predictions with Einstein Prediction Builder
Build AI-Powered Predictions with Einstein Prediction Builder
 
Trailhead Live: Build an Awesome Team of Admins
Trailhead Live: Build an Awesome Team of AdminsTrailhead Live: Build an Awesome Team of Admins
Trailhead Live: Build an Awesome Team of Admins
 
Semper Salesforce: Become a Salesforce Military Champion
Semper Salesforce: Become a Salesforce Military ChampionSemper Salesforce: Become a Salesforce Military Champion
Semper Salesforce: Become a Salesforce Military Champion
 

Último

%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Hararemasabamasaba
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...masabamasaba
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfonteinmasabamasaba
 
WSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2
 
%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benoni%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benonimasabamasaba
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...masabamasaba
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrandmasabamasaba
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnAmarnathKambale
 
Announcing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK SoftwareAnnouncing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK SoftwareJim McKeeth
 
What Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the SituationWhat Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the SituationJuha-Pekka Tolvanen
 
WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastPapp Krisztián
 
tonesoftg
tonesoftgtonesoftg
tonesoftglanshi9
 
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...chiefasafspells
 
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...WSO2
 
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...WSO2
 
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024VictoriaMetrics
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrainmasabamasaba
 

Último (20)

Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
 
%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
 
Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
 
WSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go Platformless
 
%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benoni%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benoni
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
Announcing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK SoftwareAnnouncing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK Software
 
What Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the SituationWhat Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the Situation
 
WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the past
 
tonesoftg
tonesoftgtonesoftg
tonesoftg
 
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
 
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
 
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
 
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
 

6 Reporting Formulas That Will Delight Your Users

  • 1. 6 Reporting Formulas That Will Delight Your Users April 5, 2017
  • 2. Today’s Speakers Steve Molis Salesforce Admin @SteveMoForce Geoff Flynn Principal Consultant Slalom @GeoffreyFlynn2 Michael Gerholdt Director, Admin Evangelism Salesforce @mikegerholdt
  • 3. Forward-Looking Statements ​ Statement under the Private Securities Litigation Reform Act of 1995: ​ This presentation may contain forward-looking statements that involve risks, uncertainties, and assumptions. If any such uncertainties materialize or if any of the assumptions proves incorrect, the results of salesforce.com, inc. could differ materially from the results expressed or implied by the forward-looking statements we make. All statements other than statements of historical fact could be deemed forward-looking, including any projections of product or service availability, subscriber growth, earnings, revenues, or other financial items and any statements regarding strategies or plans of management for future operations, statements of belief, any statements concerning new, planned, or upgraded services or technology developments and customer contracts or use of our services. ​ The risks and uncertainties referred to above include – but are not limited to – risks associated with developing and delivering new functionality for our service, new products and services, our new business model, our past operating losses, possible fluctuations in our operating results and rate of growth, interruptions or delays in our Web hosting, breach of our security measures, the outcome of any litigation, risks associated with completed and any possible mergers and acquisitions, the immature market in which we operate, our relatively limited operating history, our ability to expand, retain, and motivate our employees and manage our growth, new releases of our service and successful customer deployment, our limited history reselling non-salesforce.com products, and utilization and selling to larger enterprise customers. Further information on potential factors that could affect the financial results of salesforce.com, inc. is included in our annual report on Form 10-K for the most recent fiscal year and in our quarterly report on Form 10-Q for the most recent fiscal quarter. These documents and others containing important disclosures are available on the SEC Filings section of the Investor Information section of our Web site. ​ Any unreleased services or features referenced in this or other presentations, press releases or public statements are not currently available and may not be delivered on time or at all. Customers who purchase our services should make the purchase decisions based upon features that are currently available. Salesforce.com, inc. assumes no obligation and does not intend to update these forward-looking statements.
  • 4. Get Social with Us! @SalesforceAdmns #AwesomeAdmin Salesforce Admins The video will be posted to YouTube & the webinar recap page (same URL as registration). This webinar is being recorded!
  • 5. Join the Admin Webinar Group for Q&A! ​ Ask your questions in the group! •  We have team members on hand to answer questions in the webinar group. Stick around for live Q&A at the end! •  Speakers will tackle more questions at the end, time-allowing bit.ly/AdminWebinarGroup
  • 6. Today’s Agenda •  Getting Started With Formulas •  The 6 Formulas •  Resources •  Q&A
  • 8. 3 Handy Hints About Formulas 1.  Formula fields allow you to rethink your reporting requests 2.  Formula fields aren’t just for page layouts 3.  Formula fields work the same in both Lightning Experience and Classic
  • 9. The Formula Editor: Where the Magic Happens “Nobody has ever gotten rabies by clicking these. They will not bite you!!!” - Steve Mo It’s Magic!
  • 11. The Problem We need to know which objects have related activities to ensure our reps are focusing on the right areas. However… the standard activity reporting won’t allow you to group by the object the activities are logged against. We need a solution!
  • 12. Formula 1: Activity Type CASE( LEFT(WhatId, 3), "001", "Account", "500", "Case", "006", "Opportunity", "a00", "Favourite Movies", "a02", "Actors", "Other" ) ​ Benefits: 1.  Easier to know what Activities are related to 2.  Activity reporting at a glance 3.  Knowing where effort is being focused This formula represents the Object of the Related To Record
  • 15. The Problem Sometimes you want to group by the same date twice in the same report, or you want to group by Month and then by Year, or you want to show the last 3 months individually, but anything before that at the quarterly level only. However… the standard report builder doesn’t necessarily allow that level of flexibility, especially when it comes to grouping by dates. We need a solution!
  • 16. Formula 2: Amount by Month or Quarter February Amount: IF( MONTH(CloseDate) = 2, Amount, 0 ) Q4 Amount IF( MONTH(CloseDate) >= 10, Amount, 0 ) ​ Benefits: 1.  Custom timeframes allow your users to avoid complex filters 2.  Show multiple timeframes at different aggregate values 3.  Flexibility of a summary report with the look of a matrix report This formula gives you the ability to pull “XX amount” on demand
  • 17. Formula 2: Amount by Month or Quarter
  • 19. The Problem We need to display the Opportunity Sales Pipeline of an entire Corporation that spans multiple Parent and Subsidiary Accounts across several tiers of Parent and Subsidiary Accounts. However… the Standard Parent Account Field only goes up 1 Level and returns the name of the Account 1 Level above that Account. It also displays a blank value if there is no Parent of that Account. We need a solution!
  • 20. Current Opportunity Pipeline Report What should we do?
  • 21. The Solution Create a custom Formula Field on the Account Object that will return the name of the Top Parent Account in the Account Hierarchy, no matter where in the Account Hierarchy the current Account is located (even if there is no Account Hierarchy).
  • 22. Formula 3: The ‘Ultimate’ Parent Account Create a custom Cross-Object Formula(Text) field to return the Account Name from the Parent.Account.
  • 23. Formula 3: The ‘Ultimate’ Parent Account Summarize information by the Top “Ultimate” Parent Account in a multi-level Account
  • 24. Formula 3: The ‘Ultimate’ Parent Account BLANKVALUE(Parent.Parent.Parent.Parent.Parent.Name, BLANKVALUE(Parent.Parent.Parent.Parent.Name, BLANKVALUE(Parent.Parent.Parent.Name, BLANKVALUE(Parent.Parent.Name, BLANKVALUE(Parent.Name, Name))))) Formula: So smart!
  • 25. Formula 3: The ‘Ultimate’ Parent Account
  • 26. Formula 3: The ‘Ultimate’ Parent Account
  • 27. FORMULAS 4 & 5 Count of Open & Lost Opportunities
  • 28. The Problem We need to display the number of Open Opportunities in the Sales Pipeline to be able to quantify the “health” of our Sales Pipeline and ensure that we have enough new Opportunities coming in. We also need to quantify the number of Lost Opportunities so that we can measure customer attrition and identify areas that need attention and corrective measures. However… the Opportunity Object has fields that count whether an Opportunity is Closed or Won, but not Open and Lost. We need a solution!
  • 30. The Solution The Opportunity Stage field has a setting called “Type”. It sets 2 hidden Checkbox fields called IsClosed and IsWon. It sets them to either TRUE or FALSE. And using a couple of Formula (Checkbox) fields we can solve our problem.
  • 31. Formulas 4&5: Count of Open and Lost Opportunities
  • 32. Formulas 4&5: Count of Open and Lost Opportunities IsClosed = FALSE alternately NOT( IsClosed ) Create a custom field Datatype: Formula Return Type: Checkbox Formula:  Create a custom field Datatype: Formula Return Type: Checkbox Formula:  AND( IsClosed = TRUE, IsWon = FALSE) alternately AND( IsClosed, NOT( IsWon ) ) Using some simple Formula Checkbox fields we can turn IsClosed into “IsOpen” and IsWon into “IsLost”
  • 33. Formulas 4&5: Count of Open and Lost Opportunities
  • 34. Formulas 4&5: Count of Open and Lost Opportunities Wikid Smaht!
  • 35. FORMULA 6 A Different Kind of Bucket Field
  • 36. What are Buckets? ​ Buckets help you sort, organize and understand large amounts of data in Salesforce quickly and easily. ​ You can create 3 types of buckets, grouping your data without having to create custom formulas: 1.  Numeric 2.  Picklist 3.  Text So cool!
  • 37. The Problem We need to create a formula field to use as a bucket which gives us more flexibility than a bucket field on a report, or we will find ourselves continually using the same bucket field across many reports. However… the standard report bucket field needs to be created individually for each report. We need a solution!
  • 38. Formula 6: A Different Kind of Bucket Field IF( Amount > 500000, “Large Deal”, IF( Amount > 250000, “Standard Deal”, “Small Potatoes” ) ) Benefits: 1.  Easier to build 2.  Easier to maintain across reports 3.  Easier to set up for users to leverage as a regular field value in their own reports This formula is a way to create a report ‘bucket’ that can be reused across multiple reports and only adjusted once.
  • 39. Formula 6: A Different Kind of Bucket Field
  • 41. Additional Resources Trailhead modules for guided learning: Formulas & Validations, Advanced Formulas, Reports & Dashboards trailhead.salesforce.com The Success Community success.salesforce.com Formula Operators and Functions bit.ly/formulaoperatorsandfunctions