Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Salesforce Reporting and Dashboards
Salesforce Reporting and Dashboards

Salesforce Reporting and Dashboards: Master the art of building successful reports and dashboards with this comprehensive guide

eBook
€8.99 €32.99
Paperback
€41.99
Subscription
Free Trial
Renews at €18.99p/m

What do you get with Print?

Product feature icon Instant access to your digital eBook copy whilst your Print order is Shipped
Product feature icon Paperback book shipped to your preferred address
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Shipping Address

Billing Address

Shipping Methods
Table of content icon View table of contents Preview book icon Preview Book

Salesforce Reporting and Dashboards

Chapter 1. Introducing Salesforce.com

This chapter will give you a general introduction to Salesforce.com. You will learn the benefits of cloud computing technology and how to extend beyond the Salesforce CRM application using custom objects. There is also an introduction to Schema Builder. Then we will be covering the Salesforce.com architecture, setup menu, and testing environment. This guide will involve some hands-on activities for mastering reports and dashboard creation from Chapter 3, Creating Your First Report, and onwards.

This chapter contains information about reporting and dashboards that applies to both business users and system administrators. Some topics in this chapter discuss features specific for system administrators, but business users will also find it interesting to understand the Salesforce.com architecture better.

Throughout this chapter, we will provide notes and tips for you to understand the Salesforce.com technology. The following topics will be covered in this chapter:

  • Overview and benefits of Salesforce.com
  • The Salesforce object model
  • Navigating the setup menu
  • Schema Builder

Overview and benefits of Salesforce.com

Salesforce.com is a web-based enterprise platform that you can access from anywhere, anytime, and on any device as long as you are connected to the Internet. It is a cloud application, so you do not need to purchase any server/hardware, operating system, or database to use it. If you haven't used Salesforce.com before, then let me tell you that it is a web-based application like Gmail or Yahoo e-mail, but it takes this a step further because it allows you to configure and customize it to suit your business needs.

When you sign up for Salesforce, you will be provided with an "organization," which is basically a software environment. Hardware, the operating system, and the database are shared among Salesforce customers within the same "instance". Salesforce customers within the same instance run the same version of platform.

You can illustrate the Salesforce platform as an apartment building, shared by many residences. In this multitenant environment, each organization's data, configuration, and users are completely isolated and are not accessible to any other organization. So, when you configure your Salesforce organization, the metadata changes are only for your organization. A similar rule applies to your database; access to it is only for your registered users.

If you have heard about cloud computing, you will easily understand that since Salesforce.com is a Software as a Service (SaaS) model, you will only need to configure Salesforce.com to start using it. Everything from object model and business logic to page layouts, reports, and dashboards is provided by the Salesforce platform. It also has its own Java-like programming language called Apex, and an HTML-like visual markup language called Visualforce page for custom user interface design.

Since the Salesforce team takes care of the infrastructure, maintenance, software upgrades, backup, and performance, it benefits companies by lowering the IT cost and the cost of resources. As a Salesforce subscriber, you just need to maintain your users and implement the business processes you need.

When Mark Benioff started Salesforce.com from his apartment in San Francisco back in 1997, Salesforce.com was intended to act as a CRM application only. However, as the platform grew and became more robust, Salesforce opened up its platform to more customization, where you could build any kind of applications beyond CRM.

The following products are available in this platform at the time of writing this book:

  • Sales Cloud: This is used to automate your sales process
  • Service Cloud: This is used to deliver revolutionary customer service process
  • Marketing Cloud: This is used to provide digital marketing automation
  • Analytics Cloud: This is used to deliver analytics for business users and analysts
  • Force.com platform: This allows you to build your own Enterprise custom apps that connect with customers, employees, and partners

In summary, the advantages of using Salesforce.com compared to other on-premise applications are as follows:

  • Faster implementation schedule
  • Lower maintenance cost, since you don't have to buy or support in-house servers, data centers, and high-speed internet connections, or hire any IT staff for this work
  • It is scalable and robust
  • Security and high performance
  • Easily expandable functionality using prebuilt solutions from the AppExchange
  • Access from desktops, laptops, and mobile devices with Internet connectivity
  • Enjoy enterprise grade level application for small and medium businesses

Salesforce Object Model

Objects are key components in Salesforce.com. They allow you to store your data. Similar to a table in a database, an object consists of several fields to store data. You can set some fields as mandatory, while some other fields such as ID, Created Date, Created By, Last Modified Date, and Last Modified By will be automatically populated by the system.

You can illustrate an object as a table, a field as a column in the table, and a record as a row in the table. In the following table, field 1 will store the values for all first names, field 2 will store the values for all birth dates, and so on:

 

field 1

field 2

field 3

record 1

John

29 Jun

record 2

May

10 Dec

record 3

Steve

24 Feb

There are two type of objects in Salesforce:

  • Standard object
  • Custom object

Standard objects

Standard objects are provided by Salesforce.com by default. Each standard object has its own uniqueness, and the objects are named by their common uses. Some of the main Salesforce.com objects when you subscribe for Sales or Service Cloud are as follows:

  • Account: This is used to store information about the businesses and organizations your company interacts with.
  • Contact: This is used to store information about the people associated with your customers.
  • Opportunity: This is used to store information about sales interactions with your customers. It is often known as the sales cycle.
  • Lead: This is used to store information about people who may become customers or partners of your company.
  • Case: This is used to store information about interactions with your customers related to the products or services you provide.
  • Campaign: This is used to store information about your company's marketing activities and responses.

Some other standard objects are Activity, Asset, Contract, Quote, Order, Products, and Price Book.

Each standard object comes with default fields based on the purpose of the object, for example, Stage in Opportunity and Mobile Phone in Contact. You can create your own fields in a standard object called custom field. The maximum number of fields you can create depends on the Salesforce edition purchased.

Note

You can upgrade Salesforce.com to a higher edition simply by paying the increased subscription fee, and continue using the same organization with the existing database and customization. But if you plan to "downgrade" to a lower edition (it is actually not possible to downgrade), Salesforce.com will give you a brand new organization where you will need to reconfigure and transfer all your data.

Custom objects

Custom objects are specific objects created in your organization to store data for your business that does not fit into standard objects. Only a user with admin access is allowed to create custom objects. Most AppExchange packages create and use custom objects, since they provide specific business processes.

The maximum number of custom objects that can be created depends on the Salesforce edition. If you have admin permission, you can create objects and fields in Salesforce with just point-and-click rather than using complex SQL scripts as in traditional databases.

For a standard object, the number of standard fields depends on the object itself, but a custom object comes with a few standard fields that are the same for all custom objects:

  • Id
  • Name
  • Created By and Created Date
  • Last Modified By and Last Modified Date
  • Owner (if the object is not a child of another object in a master-detail relationship)

Just as with a standard object, you can create custom fields in a custom object.

Object relationships

You can relate an object to other objects in Salesforce.com, for example, relating the Expense custom object to the Project custom object. With this relation, you can know for which project the specific expense is used. In this example, Project will be considered as the parent and Expense as the child object. Remember that one parent can have many children, while the child can have only one parent. To build this relationship from the child object, create a lookup or master-detail relationship field for the parent object.

There are two types of object relationships in Salesforce.com:

  • Master-detail relationship
  • Lookup relationship

Here is the comparison between master-detail relationships and lookup relationships:

Master-detail relationship

Lookup relationship

You can define master-detail relationships between custom objects or between a custom object and a standard object (standard object must be the parent).

You can define a relationship between any two objects, standard or custom.

When a record in a master object (parent) is deleted, all the records in the detail object (child) that are related to that master record will be deleted.

When a parent object is being deleted, you can configure a child object to either clear the parent record value in the child record or prevent deletion of the parent record.

All child records must have a related parent record.

The parent record may not require a related parent record.

The ownership of the child record is determined by the related parent record. Child records do not have an owner.

Each child record has an owner and is not related to the parent record.

The detail record inherits sharing and security from the master record.

There is no security or inheritance between related parent and child records.

To relate an object to another object, no records should exist in the child object.

To relate an object to other objects, there is no condition on the number of records.

If you have the Roll-Up Summary field in the parent object, any create, edit, or delete action in the child record will trigger an edit action in the parent object. If you have a validation rule and other rules in parent object, the validation rules will trigger for the parent object.

You cannot create the Roll-Up Summary field in the lookup relationship using out-of-the-box Salesforce functionality.

Supports cross-object workflow. You can configure a field update action to update a field in the parent record using a value from the child record.

Does not support cross-object workflow.

Tip

To create a master-detail relationship for an existing object with records as the child object, you can initially define it as a lookup relationship, populate all parent fields for all records, and then change the relationship to a master-detail relationship.

You can build a many-to-many object relationship using two master-detail relationships in a single custom object, which is known as a junction object in that case.

Field types

Salesforce.com comes with field data types that fit your business model. Some of them are built with business logic, such as e-mails and URLs, these need to follow valid e-mail and URL formats respectively. Invalid values will be automatically rejected by the system. When you define custom fields, the data type you select determines which additional options you can specify Required, Unique, Case sensitive, External ID, and Default Value.

Here is the list of Salesforce's data types:

  • Auto Number
  • Formula
  • Roll-Up Summary, if the object is a parent in a master-detail relationship
  • Hierarchical Relationship (only for the User object)
  • Lookup relationship
  • Master-detail relationship
  • Checkbox
  • Currency
  • Date
  • Date/Time
  • E-mail
  • Geolocation
  • Number
  • Percent
  • Picklist
  • Picklist (multi-select)
  • Text
  • Text Area
  • Text Area (long)
  • Text Area (rich)
  • Text (encrypted)
  • URL

Sandbox or Developer Edition?

It is advised that you get your hands on all exercises in this book in a Sandbox org or Developer Edition, not in the production environment, as you might change something without knowing.

If you do not have Sandbox org for testing, you can sign up and get Developer Edition for free by clicking on Sign Up at https://developer.salesforce.com/page/Developer_Edition.

Sandbox has an exact copy of your production configuration on the date of Sandbox creation or Sandbox refreshes. Depending on the Sandbox type, you can have a complete copy of production data, partial data, or no data in a Sandbox, but all of them will have a configuration copy from the production environment. We will discuss more on Sandbox in Chapter 2, Managing Data in Salesforce.com.

While Developer Edition is an environment without any relation to your production environment, it is good enough for you to try anything explained in this book.

Navigating the Setup menu

Depending on your user details and by navigating to Setup | User Interface, here are a few ways to find the Setup menu:

  • If the Salesforce instance organization has Enable Improved Setup User Interface enabled, the Setup link will be visible next to Help, as shown in this screenshot:
    Navigating the Setup menu
  • For a Salesforce instance without Enable Improved Setup User Interface enabled, click on your name, and the Setup link will appear in the drop-down window shown in the following screenshot:
    Navigating the Setup menu
  • A Salesforce instance with Enable Improved Setup User Interface and Accessibility Mode enabled in your user details will look like the following screenshot:
    Navigating the Setup menu
  • A Salesforce instance with Enable Improved Setup User Interface disabled and Accessibility Mode enabled in your user details will look like the following screenshot:
    Navigating the Setup menu

Tip

To find the Enable Improved Setup User Interface option, navigate to Setup | Customize | User Interface.

Schema Builder

Schema Builder is a tool within Salesforce.com that is used to view and manage objects, fields, and relations between objects in a graphical interface. It is available in all Salesforce.com editions. Schema Builder is not the only option to view and manage objects, fields, and relations between objects.

The following screenshot shows four custom objects that have been created: Object1, Object2, Object3, and Object4. Object2 and Object3 have a master-detail relationship with Object1, while Object4 has a lookup relationship with Object1.

Schema Builder

Some users prefer to create the field manually rather than use Schema Builder. Manual field creation offers more options such as field-level security and adding fields to the page layout. To create or access a field, navigate to Setup | Customize for standard objects or Setup | Create | Objects for custom objects, and then you can configure the object and the field.

Schema Builder in action

Schema Builder will be available only if you have the Customize Application permission. Here are a few actions you can perform with Schema Builder:

  • Create and delete custom objects
  • Edit custom object properties
  • Create and delete custom fields
  • Edit custom field properties
  • Manage custom field permissions

In addition to the preceding actions, with Schema Builder, you can easily:

  • Understand fields in an object:
    • Required field and auto-populate field by system mark with red bar before field name
    • Field type, field length, external ID, and unique fields displayed in the right column
  • Understand relationships between objects:
    • The one end with circle and arrow is the child object. Remember that one parent can have multiple children.
    • The master-detail relationship is displayed by a red line, while the lookup relationship is displayed by a blue line.

Hands-on – navigating Schema Builder

Once you log in to Salesforce.com, there are three options you can use to open Schema Builder:

  1. Navigate to Setup | Schema Builder.
  2. Go to Setup | Create | Objects and click on Schema Builder in the panel to the right.
  3. Go to Setup | Home, and in the Quick Links box, click on the Schema Builder link.

If you don't see the Schema Builder link, it means that your user does not have the permission to customize the application.

Hands-on – navigating Schema Builder

Tip

When you are in the Setup page, you can type in the Search All Setup… textbox to search for a menu. The system will automatically filter the menu as you type.

Once you are in Schema Builder, you will see the following main tabs in the left menu:

  • Elements
  • Objects

Elements will show all field types (except Geolocation). You can drag and drop a field onto an object to add new custom fields for that object.

Objects will have an option to show all objects, standard objects, custom objects, system objects, and selected objects.

Hands-on – navigating Schema Builder

Hands-on – working in Schema Builder

Select objects that you would like to analyze or work on in the left panel. Selected objects will show up in the main canvas area. Here are a few actions you can perform with Schema Builder:

  • To create a new custom object, drag the Object icon from the Elements tab onto the canvas area. It will prompt you to enter an object label and other required information.
  • To create a new custom field, drag a field-type icon from the Elements tab onto an object selected in the canvas area. It will prompt you to enter a field label and other required information.
  • To move the object in the canvas, click on the object name and drag it.
  • Click on the gear icon at the top-right corner of the object. For standard objects, you can:
    • Hide the object.
    • View the object and page layout. It will open the details in a new window.

    For custom objects, click on the icon to:

    • Hide the object.
    • View the object and page layout. It will open the details in a new window.
    • Edit the object properties.
    • Delete the object.
  • In the case of standard fields, you can right-click on the field to view it in a new window. For custom fields, you can right-click on the field to:
    • View the field in a new window
    • Edit the field properties
    • Manage field permissions
    • Delete the field

Summary

In this chapter, we started with a discussion on Salesforce.com's architecture, the benefits of using the Salesforce.com technology, and multiple products from Salesforce.com.

We continued to discuss the Salesforce object model, how data is stored, types of objects, and the difference between standard and custom objects. You understood how to relate objects, relationships between objects (master-detail relationships and lookup relationships), and a comparison of both the relationship models. You also learned about multiple field types for objects.

Next, you learned how to find the Setup menu, and we covered the testing environment with the Sandbox or Developer Edition to get a hands-on of this book's activities. At the end of this chapter, we went into a little depth about getting a hands-on of Schema Builder. Then you learned how to navigate it to analyze and configure object models.

In the next chapter, we will go through various data management activities including data backup, data import, the Sandbox environment, and data accessibility. This chapter is intended more for system administrators, but business users will nevertheless get more knowledge on how to manage data in Salesforce.

Left arrow icon Right arrow icon

Description

This book is intended for all Salesforce users—administrators, managers, business analysts, or report writers who are new to creating reports or dashboards within Salesforce. Basic knowledge of the Salesforce platform is required.

Who is this book for?

This book is intended for all Salesforce users administrators, managers, business analysts, or report writers who are new to creating reports or dashboards within Salesforce. Basic knowledge of the Salesforce platform is required.

What you will learn

  • Understand and create multiple types of reports and dashboards from scratch
  • Assign permissions related to reports and dashboards
  • Get to grips with the Salesforce data architecture and its relation to reports
  • Get to know what a report folder is and how to use it
  • Understand and create custom report types from scratch
  • Use various components related to basic and advanced report configuration
  • Discover best practices to build and share reports and dashboards
  • Interface your dashboard to your mobile device app on the go
Estimated delivery fee Deliver to Ireland

Premium delivery 7 - 10 business days

€23.95
(Includes tracking information)

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Mar 26, 2015
Length: 306 pages
Edition : 1st
Language : English
ISBN-13 : 9781784394677
Vendor :
Salesforce
Category :
Concepts :
Tools :

What do you get with Print?

Product feature icon Instant access to your digital eBook copy whilst your Print order is Shipped
Product feature icon Paperback book shipped to your preferred address
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Shipping Address

Billing Address

Shipping Methods
Estimated delivery fee Deliver to Ireland

Premium delivery 7 - 10 business days

€23.95
(Includes tracking information)

Product Details

Publication date : Mar 26, 2015
Length: 306 pages
Edition : 1st
Language : English
ISBN-13 : 9781784394677
Vendor :
Salesforce
Category :
Concepts :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
€18.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
€189.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts
€264.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total 129.97
Salesforce.com customization handbook
€41.99
Salesforce Reporting and Dashboards
€41.99
Salesforce CRM : The Definitive Admin Handbook - Third Edition
€45.99
Total 129.97 Stars icon
Banner background image

Table of Contents

10 Chapters
1. Introducing Salesforce.com Chevron down icon Chevron up icon
2. Managing Data in Salesforce.com Chevron down icon Chevron up icon
3. Creating Your First Report Chevron down icon Chevron up icon
4. Working with Reports Chevron down icon Chevron up icon
5. Learning Advanced Report Configuration Chevron down icon Chevron up icon
6. Creating Your First Dashboard Chevron down icon Chevron up icon
7. Learning Advanced Dashboard Configuration Chevron down icon Chevron up icon
8. Accessing Historical Data Chevron down icon Chevron up icon
9. Dashboards and Reports in Salesforce1 Chevron down icon Chevron up icon
Index Chevron down icon Chevron up icon

Customer reviews

Top Reviews
Rating distribution
Full star icon Full star icon Full star icon Full star icon Half star icon 4.1
(9 Ratings)
5 star 33.3%
4 star 44.4%
3 star 22.2%
2 star 0%
1 star 0%
Filter icon Filter
Top Reviews

Filter reviews by




Amanda Peralta Apr 28, 2018
Full star icon Full star icon Full star icon Full star icon Full star icon 5
From beginners to advanced Salesforce users, this book is totally worth every penny! I am a super user and I purchased this book to help build bashboards and reports for our global sales team. I’ve found solutions to many of our reporting issues with this book! The only suggestion I have is there needs to be more formulas that can be customized to org needs. Other than that, I’d recommend this to any sales ops person using Salesforce as their CRM!
Amazon Verified review Amazon
adnan baloch May 30, 2015
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Anyone interested in creating reports and dashboards on the business platform of the CRM leader Salesforce will find this book invaluable. Readers begin their journey into the world of Salesforce with an introduction to the basic concepts of this popular SaaS platform. The two relationship models for defining the relationship between standard and custom objects are discussed using a practical approach with Schema Builder. Salesforce provides a data export functionality so the business organization can backup its data at regular intervals. Data import is a necessary feature that is available in the Salesforce cloud platform. The book also discusses the various types of Sandbox environments made available by Salesforce for experimenting without posing any threat to critical business data. The book shows how easy it is to create your own report from the available report types. Readers will appreciate the section about creating custom report types in the Report Builder. Sharing reports with managers and business executives is a pretty common activity in business organizations. The author lays out the steps required to export reports in popular formats like CSV and Excel. Practical examples are used to delineate report filters like filter logic and cross filter. Getting the list of dormant customers, for example, becomes easy with the cross filter. Readers are introduced to the concept of bucket fields that make it possible to create categories in a report based on specified criteria without having to make any changes in the account object. Dashboards are a convenient way to display multiple reports together in a visually aesthetic manner. Readers are guided through creating a dashboard from scratch as well as connecting the dashboard to Chatter for collaboration with other users. A chapter on advanced dashboard configuration takes readers through the steps necessary to implement dashboard filters, enabling them to display different combinations of data based on the selected filter which can number upto a maximum of three. Dashboards are always created based on the data visibility of a particular user. In cases where more flexibility is required, dynamic dashboards come into the picture. The book dedicates a whole chapter to detailing the historical trending and snapshot reporting features of Salesforce that enable managers to see how the data changes over time. The book ends with a brief chapter on the Salesforce1 mobile app that brings the excellent reporting capabilities of the Salesforce platform to any Android or iOS mobile device with internet access.
Amazon Verified review Amazon
R. Stowe May 02, 2017
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Excellent reference guide.
Amazon Verified review Amazon
John S. Kret Apr 21, 2017
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
Wish my employer would give us more access so i could utilize this book.
Amazon Verified review Amazon
Nitin Wader May 06, 2015
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
This book helps to understand intrinsic parts of reports and dashboard on Salesforce platform. I liked the way various report types explained in step by step manner. Advanced reporting , Reporting snapshot part is explained in very lucid manner.Author has also touched on historical data related part which is very important from SFDC admin related activities.Hands on provided at the end of each chapter are very useful. I strongly recommend this book who deals with SFDC reports & dashboards on daily basis.Grab your copy quickly !!!
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

What is the delivery time and cost of print book? Chevron down icon Chevron up icon

Shipping Details

USA:

'

Economy: Delivery to most addresses in the US within 10-15 business days

Premium: Trackable Delivery to most addresses in the US within 3-8 business days

UK:

Economy: Delivery to most addresses in the U.K. within 7-9 business days.
Shipments are not trackable

Premium: Trackable delivery to most addresses in the U.K. within 3-4 business days!
Add one extra business day for deliveries to Northern Ireland and Scottish Highlands and islands

EU:

Premium: Trackable delivery to most EU destinations within 4-9 business days.

Australia:

Economy: Can deliver to P. O. Boxes and private residences.
Trackable service with delivery to addresses in Australia only.
Delivery time ranges from 7-9 business days for VIC and 8-10 business days for Interstate metro
Delivery time is up to 15 business days for remote areas of WA, NT & QLD.

Premium: Delivery to addresses in Australia only
Trackable delivery to most P. O. Boxes and private residences in Australia within 4-5 days based on the distance to a destination following dispatch.

India:

Premium: Delivery to most Indian addresses within 5-6 business days

Rest of the World:

Premium: Countries in the American continent: Trackable delivery to most countries within 4-7 business days

Asia:

Premium: Delivery to most Asian addresses within 5-9 business days

Disclaimer:
All orders received before 5 PM U.K time would start printing from the next business day. So the estimated delivery times start from the next day as well. Orders received after 5 PM U.K time (in our internal systems) on a business day or anytime on the weekend will begin printing the second to next business day. For example, an order placed at 11 AM today will begin printing tomorrow, whereas an order placed at 9 PM tonight will begin printing the day after tomorrow.


Unfortunately, due to several restrictions, we are unable to ship to the following countries:

  1. Afghanistan
  2. American Samoa
  3. Belarus
  4. Brunei Darussalam
  5. Central African Republic
  6. The Democratic Republic of Congo
  7. Eritrea
  8. Guinea-bissau
  9. Iran
  10. Lebanon
  11. Libiya Arab Jamahriya
  12. Somalia
  13. Sudan
  14. Russian Federation
  15. Syrian Arab Republic
  16. Ukraine
  17. Venezuela
What is custom duty/charge? Chevron down icon Chevron up icon

Customs duty are charges levied on goods when they cross international borders. It is a tax that is imposed on imported goods. These duties are charged by special authorities and bodies created by local governments and are meant to protect local industries, economies, and businesses.

Do I have to pay customs charges for the print book order? Chevron down icon Chevron up icon

The orders shipped to the countries that are listed under EU27 will not bear custom charges. They are paid by Packt as part of the order.

List of EU27 countries: www.gov.uk/eu-eea:

A custom duty or localized taxes may be applicable on the shipment and would be charged by the recipient country outside of the EU27 which should be paid by the customer and these duties are not included in the shipping charges been charged on the order.

How do I know my custom duty charges? Chevron down icon Chevron up icon

The amount of duty payable varies greatly depending on the imported goods, the country of origin and several other factors like the total invoice amount or dimensions like weight, and other such criteria applicable in your country.

For example:

  • If you live in Mexico, and the declared value of your ordered items is over $ 50, for you to receive a package, you will have to pay additional import tax of 19% which will be $ 9.50 to the courier service.
  • Whereas if you live in Turkey, and the declared value of your ordered items is over € 22, for you to receive a package, you will have to pay additional import tax of 18% which will be € 3.96 to the courier service.
How can I cancel my order? Chevron down icon Chevron up icon

Cancellation Policy for Published Printed Books:

You can cancel any order within 1 hour of placing the order. Simply contact customercare@packt.com with your order details or payment transaction id. If your order has already started the shipment process, we will do our best to stop it. However, if it is already on the way to you then when you receive it, you can contact us at customercare@packt.com using the returns and refund process.

Please understand that Packt Publishing cannot provide refunds or cancel any order except for the cases described in our Return Policy (i.e. Packt Publishing agrees to replace your printed book because it arrives damaged or material defect in book), Packt Publishing will not accept returns.

What is your returns and refunds policy? Chevron down icon Chevron up icon

Return Policy:

We want you to be happy with your purchase from Packtpub.com. We will not hassle you with returning print books to us. If the print book you receive from us is incorrect, damaged, doesn't work or is unacceptably late, please contact Customer Relations Team on customercare@packt.com with the order number and issue details as explained below:

  1. If you ordered (eBook, Video or Print Book) incorrectly or accidentally, please contact Customer Relations Team on customercare@packt.com within one hour of placing the order and we will replace/refund you the item cost.
  2. Sadly, if your eBook or Video file is faulty or a fault occurs during the eBook or Video being made available to you, i.e. during download then you should contact Customer Relations Team within 14 days of purchase on customercare@packt.com who will be able to resolve this issue for you.
  3. You will have a choice of replacement or refund of the problem items.(damaged, defective or incorrect)
  4. Once Customer Care Team confirms that you will be refunded, you should receive the refund within 10 to 12 working days.
  5. If you are only requesting a refund of one book from a multiple order, then we will refund you the appropriate single item.
  6. Where the items were shipped under a free shipping offer, there will be no shipping costs to refund.

On the off chance your printed book arrives damaged, with book material defect, contact our Customer Relation Team on customercare@packt.com within 14 days of receipt of the book with appropriate evidence of damage and we will work with you to secure a replacement copy, if necessary. Please note that each printed book you order from us is individually made by Packt's professional book-printing partner which is on a print-on-demand basis.

What tax is charged? Chevron down icon Chevron up icon

Currently, no tax is charged on the purchase of any print book (subject to change based on the laws and regulations). A localized VAT fee is charged only to our European and UK customers on eBooks, Video and subscriptions that they buy. GST is charged to Indian customers for eBooks and video purchases.

What payment methods can I use? Chevron down icon Chevron up icon

You can pay with the following card types:

  1. Visa Debit
  2. Visa Credit
  3. MasterCard
  4. PayPal
What is the delivery time and cost of print books? Chevron down icon Chevron up icon

Shipping Details

USA:

'

Economy: Delivery to most addresses in the US within 10-15 business days

Premium: Trackable Delivery to most addresses in the US within 3-8 business days

UK:

Economy: Delivery to most addresses in the U.K. within 7-9 business days.
Shipments are not trackable

Premium: Trackable delivery to most addresses in the U.K. within 3-4 business days!
Add one extra business day for deliveries to Northern Ireland and Scottish Highlands and islands

EU:

Premium: Trackable delivery to most EU destinations within 4-9 business days.

Australia:

Economy: Can deliver to P. O. Boxes and private residences.
Trackable service with delivery to addresses in Australia only.
Delivery time ranges from 7-9 business days for VIC and 8-10 business days for Interstate metro
Delivery time is up to 15 business days for remote areas of WA, NT & QLD.

Premium: Delivery to addresses in Australia only
Trackable delivery to most P. O. Boxes and private residences in Australia within 4-5 days based on the distance to a destination following dispatch.

India:

Premium: Delivery to most Indian addresses within 5-6 business days

Rest of the World:

Premium: Countries in the American continent: Trackable delivery to most countries within 4-7 business days

Asia:

Premium: Delivery to most Asian addresses within 5-9 business days

Disclaimer:
All orders received before 5 PM U.K time would start printing from the next business day. So the estimated delivery times start from the next day as well. Orders received after 5 PM U.K time (in our internal systems) on a business day or anytime on the weekend will begin printing the second to next business day. For example, an order placed at 11 AM today will begin printing tomorrow, whereas an order placed at 9 PM tonight will begin printing the day after tomorrow.


Unfortunately, due to several restrictions, we are unable to ship to the following countries:

  1. Afghanistan
  2. American Samoa
  3. Belarus
  4. Brunei Darussalam
  5. Central African Republic
  6. The Democratic Republic of Congo
  7. Eritrea
  8. Guinea-bissau
  9. Iran
  10. Lebanon
  11. Libiya Arab Jamahriya
  12. Somalia
  13. Sudan
  14. Russian Federation
  15. Syrian Arab Republic
  16. Ukraine
  17. Venezuela