Book Image

Salesforce CRM Admin Cookbook

By : Paul Goodey, Paul Goodey GP
Book Image

Salesforce CRM Admin Cookbook

By: Paul Goodey, Paul Goodey GP

Overview of this book

Salesforce CRM is a market-leading customer relationship management (CRM) application that is accessed over the Internet. It is a proven system which helps to manage large volumes of information across an organization and also improves communication between departments for exceptional customer service. The CRM application is available for the management of sales projections and orders, marketing plans, knowledge management, service and support, partner relationships, and data analytics. The application greatly enhances a company's sales performance, improves customer satisfaction, and provides a robust customer relationship management system for an organization. For optimum performance of the system, there are a lot of things for you as the Salesforce administrator to know and tackle, but there isn't a single book which focuses on the administrative aspect of Salesforce CRM. "Salesforce CRM Admin Cookbook" enables you to instantly extend and unleash the power of Salesforce CRM. It provides clear, comprehensive instructions along with detailed screenshots and code. Whether you are looking for solutions to enhance the core features or are looking for ideas for advanced customization techniques, this book will provide you with immediate, practical, and exciting real-world recipes. This book provides practical, step-by-step instructions that cover the use of hidden features, advanced user interface techniques, solutions for process automation, and data and systems integration in detail. This book guides you through interesting topics spanning a variety of functional areas. Recipes are provided that cover data quality and automation, approval and workflow processing, solutions to increase productivity, and the integration of Salesforce CRM with external tools and applications, such as Google and Microsoft Outlook. "Salesforce CRM Admin Cookbook' provides practical, step-by-step instructions to deliver enhanced functionality and extend the power of Salesforce CRM.
Table of Contents (17 chapters)
Salesforce CRM Admin Cookbook
Credits
About the Author
Acknowledgement
About the Reviewers
www.PacktPub.com
Preface
Index

Presenting an Account credit score graphically using a Google image chart


This recipe presents the steps for rendering a credit score graphically using a Google Chart contained within a custom Salesforce CRM formula field. Here we are using a dial-type chart from Google called a Google-o-meter chart. The Google-o-meter is a gauge that points toward a single value on a range. More details can be found at https://developers.google.com/chart/image/docs/gallery/googleometer_chart#introduction.

First, we create a custom account credit score which will feed the values rendered in the graphical range.

Getting ready

To create a custom Credit Score field on the account, follow these steps:

  1. Navigate to the Account Fields setup page by going to Your Name | Customize | Accounts | Fields.

    Note

    Scroll down to the Account Custom Fields & Relationships section.

  2. Click on New.

    Note

    We will be presented with the Step 1. Choose the field type page.

  3. Choose Number from the Data Type options.

  4. Click on Next.

    Note

    We will...