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
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Data Democratization with Domo

You're reading from   Data Democratization with Domo Bring together every component of your business to make better data-driven decisions using Domo

Arrow left icon
Product type Paperback
Published in Jun 2022
Publisher Packt
ISBN-13 9781800568426
Length 576 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Jeff Burtenshaw Jeff Burtenshaw
Author Profile Icon Jeff Burtenshaw
Jeff Burtenshaw
Arrow right icon
View More author details
Toc

Table of Contents (26) Chapters Close

Preface 1. Section 1: Data Pipelines
2. Chapter 1: Domo Ecosystem Overview FREE CHAPTER 3. Chapter 2: Importing Data 4. Chapter 3: Storing Data 5. Chapter 4: Sculpting Data 6. Chapter 5: Sculpting Data In-Memory 7. Section 2: Presenting the Message
8. Chapter 6: Creating Dashboards 9. Chapter 7: Working with Drill Pathways 10. Chapter 8: Interacting with Dashboards 11. Chapter 9: Interacting with Cards 12. Section 3: Communicating to Win
13. Chapter 10: Telling Relevant Stories 14. Chapter 11: Distributing Stories 15. Chapter 12: Alerting 16. Chapter 13: Buzzing 17. Section 4: Extending
18. Chapter 14: Extending Domo with Domo Apps 19. Chapter 15: Using Domo APIs in Python 20. Chapter 16: Using Domo Machine Learning 21. Section 5: Governing
22. Chapter 17: Securing Assets 23. Chapter 18: Organizing the Team 24. Chapter 19: Establishing Standard Procedures 25. Other Books You May Enjoy

Conventions used

There are a number of text conventions used throughout this book.

Code in text: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "In the Filename field, select the persons.csv file you downloaded."

A block of code is set as follows:

-- Lead Source Standardization
case 
when `LeadSource` = 'Patnes' then 'Partners'
when `LeadSource` = 'Diect' then 'Direct'
when `LeadSource` = 'Sales Ceated' then 'Sales Created'
when `LeadSource` = 'efeal' then 'Referral'
when `LeadSource` = 'Self-Souced' then 'Self-Sourced'
when `LeadSource` = 'Maketing Outbound' then 'Marketing Outbound'
when `LeadSource` = 'Stategic Accounts Maketing' then 'Strategic Accounts Marketing'
when `LeadSource` = 'Patneing' then 'Partners'
else `LeadSource` -- If not mapped then keep as is
end

When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:

SELECT 
DATE(`LastModifiedDate`) as 'Date', 
SUM(case when `IsWon`= 'true' then 1 else 0 end) as 'Won',
-- Lost = Closed - Won
SUM(case when `IsClosed` = 'true' then 1 else 0 end) -
SUM(case when `IsWon`= 'true' then 1 else 0 end) as 'Lost',
SUM(case when `IsClosed` = 'true' then 1 else 0 end) as 'Closed'
FROM `opportunity_cleansed`
GROUP BY DATE(`LastModifiedDate`)
ORDER BY 1 DESC

Bold: Indicates a new term, an important word, or words that you see onscreen. For instance, words in menus or dialog boxes appear in bold. Here is an example: "Python Script is the design tile to drag and drop for use in a dataflow."

Tips or important notes

Appear like this.

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image