SlideShare a Scribd company logo
1 of 24
Download to read offline
Reporting & Dashboards
with Formula Success Tools
     Becoming a Formula Ninja
Steve Molis
Salesforce.com MVP
Safe Harbor

   Safe harbor 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 intellectual
    property and other litigation, risks associated with 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-Q for the most recent fiscal quarter ended April 30, 2011. This 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.
Reporting & Dashboard
              Formulas

 Using $User.Id to create dynamic List Views, Reports and
  Dashboards
 Creating an Opportunity Status Field for “Quick & Easy”
  Reports, Dashboards, and List Views.
 Using Record Types to create custom Sales vs. Quota Reports
  and Dashboards
Created by Current User

 Using $User.Id to create dynamic List Views, Reports and
  Dashboards
 Create an Opportunity Status Field for “Quick & Easy” Reports,
  Dashboards, and List Views.
 Use Record Types to create custom Sales vs. Quota Reports
  and Dashboards
 Adding image formulas to your tired old Reports and List Views
Created by Current User

 Business Requirement
  • Dynamically show in a list view, all activities that were created by the
     user logged in, not just activities that were owned by them
  • Users can easily see activities that are owned by them with the ‘My
     Activities’ list view
 Solution
  • Evaluate the CreatedById field and compare it to the current User.Id
     to return a simple True/False result.
 Fields Referenced
  • CreatedById
  • $User.Id
 Function Used
  • IF(logical_test, value_if_true, value_if_false)
Created by Current User

 Business Requirement
  • Dynamically show in a list view, all activities that were created by the
     user logged in, not just activities that were owned by them
  • Users can easily see activities that are owned by them with the ‘My
     Activities’ list view
 Solution
  • Evaluate the CreatedBy User.Id field and compare it to the current
     User.Id to return a simple True/False result.
 Fields Referenced
  • CreatedById
  • $User.Id
 Function Used
  • IF(logical_test, value_if_true, value_if_false)
Created by Current User
   Create a custom field
   Field Name: CreatedBy$User
   Datatype: Formula
   Return Type: Number, 0 decimals
   Open the Advanced Formula Tab
   Formula: IF(CreatedById = $User.Id , 1, 0)

 * When in doubt use the “Insert Field” and “Insert Operator” buttons
 (they are your friends!)
Created by Current User
Created by Current User

 Step 2: Create the Dynamic Report or List View
Created by Current User

 Step 2: Create the Dynamic Report or List View
Created by Current User

 Step 2: Create the Dynamic Report or List View
Created by Current User
 Also available in LastModifiedBy!
Created by Current User
 Also available in LastModifiedBy!
Opportunity Status

 Business Requirement
  • Summarize multiple opportunity stages across Sales Processes and
     Record Types for Sales Pipeline Reports and Dashboards
  • Solution
  • Bypass the Opportunity.Stage field and evaluate the standard IsClosed
     and IsWon boolean fields to return a single text value.
 Fields Referenced
  • IsClosed
  • IsWon
  • Function Used
  • IF(logical_test, value_if_true, value_if_false)
Opportunity Status

   Create a custom field
   Field Name: Status
   Datatype: Formula
   Return Type: TEXT
   Open the Advanced Formula Tab
   Formula:
   IF(IsWon , "Won",
    IF(NOT(IsClosed), "Open",
    "Lost"))
Opportunity Status
Opportunity Status
Quota Opportunities
 Business Requirement
  • Assign Sales Goals to users by Account, Product, and Time Frame.
    Compare Sales vs. Goal using existing Pipeline Reports and Dashboards
  • Solution
  • Leverage the standard Opportunity object and create a custom
    Opportunity Record Types, Pages Layouts, and Sales Processes for
    Sales and Quota.
 Object Referenced
  • Opportunity
 Functions used
  • Opportunity Record Type
  • Opportunity Sales Process
  • Opportunity Page Layouts
Quota Opportunities

 Create custom Opportunity Record Types (Sales and Quota)
 Create custom Opportunity Stage picklist values for Quota Record
  Type
 Create custom Sales Process for Quota Opportunities
 Create custom Opportunity Page Layouts for Sales and Quotas
 Update existing Opportunity Pipeline Reports and Dashboards to
  include/exclude Quota Opportunities as needed
Quota Opportunities
Quota Opportunities
Follow me!
Twitter: @SteveMoForce

http://success.salesforce.com/answers
SteveMo

http://www.salesforce.com/dreamforce
@Steve Molis
Thank YOU!

More Related Content

Viewers also liked

Viewers also liked (8)

DF2UFL 2012: Visual Workflow for Sales and Service Clouds
DF2UFL 2012: Visual Workflow for Sales and Service CloudsDF2UFL 2012: Visual Workflow for Sales and Service Clouds
DF2UFL 2012: Visual Workflow for Sales and Service Clouds
 
Dreamforce to YOU - Florida Kickoff & Closing
Dreamforce to YOU - Florida Kickoff & ClosingDreamforce to YOU - Florida Kickoff & Closing
Dreamforce to YOU - Florida Kickoff & Closing
 
DF2UFL 2012: 12 Most Successful Habits of a Salesforce.com Admin
DF2UFL 2012: 12 Most Successful Habits of a Salesforce.com AdminDF2UFL 2012: 12 Most Successful Habits of a Salesforce.com Admin
DF2UFL 2012: 12 Most Successful Habits of a Salesforce.com Admin
 
DF2UFL 2012: Developer's Den - What's New and What's on the Horizon
DF2UFL 2012: Developer's Den - What's New and What's on the HorizonDF2UFL 2012: Developer's Den - What's New and What's on the Horizon
DF2UFL 2012: Developer's Den - What's New and What's on the Horizon
 
DF2UFL 2012: Data Management & Integration Approaches
DF2UFL 2012: Data Management & Integration ApproachesDF2UFL 2012: Data Management & Integration Approaches
DF2UFL 2012: Data Management & Integration Approaches
 
DF2UFL 2012: Spring '12 Release Features Speed Date
DF2UFL 2012: Spring '12 Release Features Speed DateDF2UFL 2012: Spring '12 Release Features Speed Date
DF2UFL 2012: Spring '12 Release Features Speed Date
 
DF2UFL 2012: Salesforce.com Analytics Enhancements
DF2UFL 2012: Salesforce.com Analytics EnhancementsDF2UFL 2012: Salesforce.com Analytics Enhancements
DF2UFL 2012: Salesforce.com Analytics Enhancements
 
DF2UFL 2012: Workflows: Making the MOST of Salesforce.com Native Functionality
DF2UFL 2012: Workflows: Making the MOST of Salesforce.com Native FunctionalityDF2UFL 2012: Workflows: Making the MOST of Salesforce.com Native Functionality
DF2UFL 2012: Workflows: Making the MOST of Salesforce.com Native Functionality
 

Similar to DF2UFL 2012: Reporting & Dashboards with Formula Success Tools

Best practices in creating & using sales reports & dashboards
Best practices in creating & using sales reports & dashboards Best practices in creating & using sales reports & dashboards
Best practices in creating & using sales reports & dashboards
csupilowski
 

Similar to DF2UFL 2012: Reporting & Dashboards with Formula Success Tools (20)

Become a Formula Ninja
Become a Formula NinjaBecome a Formula Ninja
Become a Formula Ninja
 
Learn More with SteveMo - Steve Molis
Learn More with SteveMo - Steve MolisLearn More with SteveMo - Steve Molis
Learn More with SteveMo - Steve Molis
 
Preparing for Lightning: Replacing URL Hacks with Actions
Preparing for Lightning: Replacing URL Hacks with ActionsPreparing for Lightning: Replacing URL Hacks with Actions
Preparing for Lightning: Replacing URL Hacks with Actions
 
Advanced Reporting Tips and Tricks for New Admins
Advanced Reporting Tips and Tricks for New AdminsAdvanced Reporting Tips and Tricks for New Admins
Advanced Reporting Tips and Tricks for New Admins
 
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
 
ABC of Einstein Analytics
ABC of Einstein AnalyticsABC of Einstein Analytics
ABC of Einstein Analytics
 
Getting Started with Process Builder by Susan Sparks
Getting Started with Process Builder by Susan SparksGetting Started with Process Builder by Susan Sparks
Getting Started with Process Builder by Susan Sparks
 
Practical Headless Flow Examples
Practical Headless Flow ExamplesPractical Headless Flow Examples
Practical Headless Flow Examples
 
ISV Tech Talk: Usage Metrics for Your LMA Managed Packages
ISV Tech Talk:  Usage Metrics for Your LMA Managed PackagesISV Tech Talk:  Usage Metrics for Your LMA Managed Packages
ISV Tech Talk: Usage Metrics for Your LMA Managed Packages
 
A Developer's Guide to Visual Workflow
A Developer's Guide to Visual WorkflowA Developer's Guide to Visual Workflow
A Developer's Guide to Visual Workflow
 
Process Builder and Flow: An Admin's Trigger by Rich Englhard
Process Builder and Flow: An Admin's Trigger by Rich EnglhardProcess Builder and Flow: An Admin's Trigger by Rich Englhard
Process Builder and Flow: An Admin's Trigger by Rich Englhard
 
Salesforce Spring 17 Release Overview
Salesforce Spring 17 Release OverviewSalesforce Spring 17 Release Overview
Salesforce Spring 17 Release Overview
 
Aan009 Contreras 091907
Aan009 Contreras 091907Aan009 Contreras 091907
Aan009 Contreras 091907
 
Toronto dev group mar2019
Toronto dev group mar2019Toronto dev group mar2019
Toronto dev group mar2019
 
Chicago Nonprofit 10 24 Salesforce Labs + Winter '20
Chicago Nonprofit 10 24 Salesforce Labs + Winter '20Chicago Nonprofit 10 24 Salesforce Labs + Winter '20
Chicago Nonprofit 10 24 Salesforce Labs + Winter '20
 
Staying Ahead of the Curve with Lightning - Snowforce16 Keynote
Staying Ahead of the Curve with Lightning - Snowforce16 KeynoteStaying Ahead of the Curve with Lightning - Snowforce16 Keynote
Staying Ahead of the Curve with Lightning - Snowforce16 Keynote
 
Ready... Set... Action! - Susan Thayer
Ready... Set... Action! - Susan ThayerReady... Set... Action! - Susan Thayer
Ready... Set... Action! - Susan Thayer
 
Commission Tracking: Automate Using Process Builder, Formulas and Workflows
Commission Tracking: Automate Using Process Builder, Formulas and WorkflowsCommission Tracking: Automate Using Process Builder, Formulas and Workflows
Commission Tracking: Automate Using Process Builder, Formulas and Workflows
 
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
 
Best practices in creating & using sales reports & dashboards
Best practices in creating & using sales reports & dashboards Best practices in creating & using sales reports & dashboards
Best practices in creating & using sales reports & dashboards
 

Recently uploaded

Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 

Recently uploaded (20)

Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 

DF2UFL 2012: Reporting & Dashboards with Formula Success Tools

  • 1. Reporting & Dashboards with Formula Success Tools Becoming a Formula Ninja
  • 3. Safe Harbor  Safe harbor 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 intellectual property and other litigation, risks associated with 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-Q for the most recent fiscal quarter ended April 30, 2011. This 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. Reporting & Dashboard Formulas  Using $User.Id to create dynamic List Views, Reports and Dashboards  Creating an Opportunity Status Field for “Quick & Easy” Reports, Dashboards, and List Views.  Using Record Types to create custom Sales vs. Quota Reports and Dashboards
  • 5. Created by Current User  Using $User.Id to create dynamic List Views, Reports and Dashboards  Create an Opportunity Status Field for “Quick & Easy” Reports, Dashboards, and List Views.  Use Record Types to create custom Sales vs. Quota Reports and Dashboards  Adding image formulas to your tired old Reports and List Views
  • 6. Created by Current User  Business Requirement • Dynamically show in a list view, all activities that were created by the user logged in, not just activities that were owned by them • Users can easily see activities that are owned by them with the ‘My Activities’ list view  Solution • Evaluate the CreatedById field and compare it to the current User.Id to return a simple True/False result.  Fields Referenced • CreatedById • $User.Id  Function Used • IF(logical_test, value_if_true, value_if_false)
  • 7. Created by Current User  Business Requirement • Dynamically show in a list view, all activities that were created by the user logged in, not just activities that were owned by them • Users can easily see activities that are owned by them with the ‘My Activities’ list view  Solution • Evaluate the CreatedBy User.Id field and compare it to the current User.Id to return a simple True/False result.  Fields Referenced • CreatedById • $User.Id  Function Used • IF(logical_test, value_if_true, value_if_false)
  • 8. Created by Current User  Create a custom field  Field Name: CreatedBy$User  Datatype: Formula  Return Type: Number, 0 decimals  Open the Advanced Formula Tab  Formula: IF(CreatedById = $User.Id , 1, 0)  * When in doubt use the “Insert Field” and “Insert Operator” buttons  (they are your friends!)
  • 10. Created by Current User  Step 2: Create the Dynamic Report or List View
  • 11. Created by Current User  Step 2: Create the Dynamic Report or List View
  • 12. Created by Current User  Step 2: Create the Dynamic Report or List View
  • 13. Created by Current User  Also available in LastModifiedBy!
  • 14. Created by Current User  Also available in LastModifiedBy!
  • 15. Opportunity Status  Business Requirement • Summarize multiple opportunity stages across Sales Processes and Record Types for Sales Pipeline Reports and Dashboards • Solution • Bypass the Opportunity.Stage field and evaluate the standard IsClosed and IsWon boolean fields to return a single text value.  Fields Referenced • IsClosed • IsWon • Function Used • IF(logical_test, value_if_true, value_if_false)
  • 16. Opportunity Status  Create a custom field  Field Name: Status  Datatype: Formula  Return Type: TEXT  Open the Advanced Formula Tab  Formula:  IF(IsWon , "Won", IF(NOT(IsClosed), "Open", "Lost"))
  • 19. Quota Opportunities  Business Requirement • Assign Sales Goals to users by Account, Product, and Time Frame. Compare Sales vs. Goal using existing Pipeline Reports and Dashboards • Solution • Leverage the standard Opportunity object and create a custom Opportunity Record Types, Pages Layouts, and Sales Processes for Sales and Quota.  Object Referenced • Opportunity  Functions used • Opportunity Record Type • Opportunity Sales Process • Opportunity Page Layouts
  • 20. Quota Opportunities  Create custom Opportunity Record Types (Sales and Quota)  Create custom Opportunity Stage picklist values for Quota Record Type  Create custom Sales Process for Quota Opportunities  Create custom Opportunity Page Layouts for Sales and Quotas  Update existing Opportunity Pipeline Reports and Dashboards to include/exclude Quota Opportunities as needed