Google Data Studio. Toronto, Ontario May 31, 2017

Size: px
Start display at page:

Download "Google Data Studio. Toronto, Ontario May 31, 2017"

Transcription

1 Google Data Studio Toronto, Ontario May 31, 2017

2 Introductions Share with us: Your name, organization, and role How do you currently display and share data? e.g. Excel? PowerPoint? Dashboards in Google Analytics? Tableau? Other tools? One thing you must learn to make this course worthwhile 2

3 Who am I? Marc Soares Senior Consultant Digital analytics consulting at ClickInsight Measurement strategy, design, & implementation Reporting, visualization, & analysis Instructor for Google Analytics, Google Tag Manager, & Data Studio training courses 3

4 What We ll Cover Introduction Features & Benefits Overview Integrating with Google Analytics Fundamentals of Data Sources Connectors Fields, Dimensions, & Metrics Calculated Fields Fundamentals of Reports Charts & Components Pages Properties Principles of Data Visualization Why we visualize data How to visualize data effectively Choosing the right chart type Connecting to Data Connecting to Google Analytics Connecting to other sources Building Reports Using charts and filters Customizing style and formatting Sharing & Collaboration 4

5 Introduction Overview of Features and Interface 5

6 Google Data Studio Launched in May 2016 (U.S. Only) Available in Canada since Sept 2016 Free and unlimited since March 2017 Currently in Beta 6

7 Key Features & Benefits Connect to all your data sources in one place Clean and transform your data Build reports using the drag-and-drop visual editor Create interactive reports and dashboards Tell a story using a combination of words, numbers, and visuals Easily share reports and dashboards 7

8 7 Reasons to Use Data Studio with Google Analytics 1. Create as many reports as you need for free! 2. Customize the appearance of reports and dashboards 3. Combine data from different views and sources 4. Create calculated dimensions and metrics 5. Break the 12-widget limit 6. Share reports easily 7. Avoid GA Reporting API restrictions 8

9 Home Page Interface 9

10 Practice: Create a Report from a Template 1. Start a new report using the Acme Marketing template 2. Select [Sample] Google Analytics Data as the new data source 10

11 Report Editor Interface 11

12 Connecting to Data Creating and Editing Data Sources 12

13 Data Sources Reports in Data Studio can use one or more data sources Each data source connects to an underlying data set, for example: Google Analytics AdWords Search Console Google Sheets BigQuery CSV (Comma Separated Values) file 13

14 Practice: Connect to Google Analytics 1. Create a new data source 2. Select the Google Analytics connector 3. Authorize Data Studio to connect to your GA account 4. Select your GA account, property, and view 5. Click Connect 14

15 Data Source Editor Interface 15

16 Editing a Data Source You can perform the following changes to a data source: Rename the data source Rename fields Duplicate fields Create calculated fields Delete the data source Edits to a data source do not change the underlying data set 16

17 Metrics & Dimensions City, Campaign, and Device Category are Dimensions Sessions, Pages/Session, Avg. Session Duration are Metrics 17

18 Metrics & Dimensions Dimensions (attributes) City Device Category Page Title Campaign Name Browser Event Category etc. Metrics (measures) Users Sessions Pageviews Avg. Session Duration Ecommerce Conversion Rate Bounce Rate etc. 18

19 Calculated Fields In the Data Source editor, you can create calculated dimensions or metrics: Click the + button to create a new calculated field Enter a name for the new field Enter a formula For simple arithmetic, use standard operators: + - / * Refer to Function List for available functions and syntax 19

20 Practice: Create Calculated Fields 1. Create 4 calculated fields in your GA data source: a) Create a dimension that combines the Hostname and Page URI: CONCAT(Hostname, Page) b) Create a dimension that forces Medium to lowercase: LOWER(Medium) c) Create a metric for Avg. Sessions per User Sessions / Users d) Create a metric for the ratio of Pageviews to Unique Pageviews Pageviews / Unique Pageviews 20

21 Creating Reports Overview of Charts and Components 21

22 Components Reports are made up of components: Pages Charts Filter Controls Text and Images Groups 22

23 Charts The following charts are currently available in Data Studio: Bar chart Time series Table Geo map Scorecard Scatterplot Bullet chart Area chart Pie chart 23

24 Practice: Create a basic dashboard 1. Using your Google Analytics data source, create a report with the following charts: a) Time series of Sessions and Users by month b) Scorecard of Avg. Sessions per User c) Geo map of Avg. Session Duration by province d) Bar chart of Bounce Rate by Medium e) Table of most viewed pages with Unique Pageviews, Avg. Time on Page, and Pageviews / Unique Pageviews 24

25 Filtering Your Data 25

26 Filters Filters can be applied to the following components: Report Page Group Chart You can also add Filter Controls to allow report viewers to dynamically filter reports, pages, or charts Google Analytics data can be filtered by an Advanced Segment (segment must already exist in GA) 26

27 Practice: Filtering a Page 1. Duplicate your basic dashboard page Page > Duplicate Page 2. Add a page-level filter for mobile/tablet devices only Page > Current Page Settings > Page Filter 27

28 Practice: Filtering a Chart 1. On a new page, create a bar chart showing Sessions by Default Channel Grouping 2. Duplicate the chart 3. Filter the first chart for Desktop devices only 4. Filter the second chart for Mobile or Tablet devices only 28

29 Practice: Filtering by Date 1. Change the default date range for the report File > Report Settings > Default Date Range Set to Last Month 2. Add a Date Range filter control 3. Make the Date Range control report-level 29

30 Practice: Adding a Filter Control 1. Add a Filter Control for Default Channel Grouping 2. Sort Channels by Sessions descending 3. Select Expandable style from Style properties tab 30

31 Regular Expressions (RegEx) A regular expression is a sequence of characters that can be used to match a pattern of text Special characters and wildcards enable efficient matching For example: ^(www\.)?clickinsight\.ca$ Matches or clickinsight.ca United (States Kingdom) Matches United States or United Kingdom 31

32 Styling Your Report Overview of style and formatting options 32

33 Report Layout and Theme Use the Layout and Theme panel to apply style and formatting to the entire report Adjust view mode and canvas size Change colour scheme and default chart formatting 33

34 Text and Images You can draw text boxes, images, rectangles, or circles Ideas: Use text boxes to add titles, comments, and analysis to your reports Insert images and shapes to add corporate branding Use background shapes to visually group charts or create sections Make a component report-level to create a persistent header or footer 34

35 Practice: Styling your dashboard 1. Add a visual style to your GA dashboard: a) Adjust chart colours using the report-level theme settings b) Insert a text box and add a title for your dashboard c) Insert a logo image 35

36 Sharing Your Report 36

37 Sharing a Report Sharing a Data Studio report works similarly to Google Drive Share via a link Share with specific people You can grant View or Edit permissions Viewers don t need to sign-in and don t need access to the underlying data set You must share both the report and associated data source(s) 37

38 CASE Statements Advanced Examples of Conditional Calculations 38

39 CASE Statements Data Studio does not have an IF construct. You must use CASE to create conditional formulas. The CASE syntax: CASE WHEN condition THEN result ELSE result END You can have multiple WHEN THEN clauses The WHEN condition must return a Boolean (true or false) 39

40 Practice: Creating Custom Geographies 1. Create a calculated field using a CASE statement that produces a custom geographic grouping of provinces: a) British Columbia, Alberta, Saskatchewan, or Manitoba West b) Ontario or Quebec Central c) Nova Scotia, New Brunswick, Prince Edward Island, or Newfoundland and Labrador East Hint: Use the IN operator to match against a list of values e.g. WHEN Region IN ( Ontario, Quebec ) THEN Central 40

41 RegEx Functions Using Regular Expressions in Calculated Fields 41

42 RegEx Functions You can use RegEx functions in calculated fields: REGEXP_EXTRACT Extract a portion of a dimension value e.g. REGEXP_EXTRACT(Page, category=([^&]+) ) REGEXP_MATCH Match a dimension value against a regex pattern, returning true or false e.g. REGEXP_MATCH(Medium,"^(cpc ppc paidsearch)$") REGEXP_REPLACE Search and replace a text pattern within a dimension value e.g. REGEXP_REPLACE(Hostname, abc.xyz ) 42

43 Data Viz 101 Principles of Data Visualization 43

44 What is Data Visualization? Data visualization is the use of visual representations to explore, make sense of, and communicate data. ~ Stephen Few 44

45 Why do we visualize data? Visualization enables us to: 1. See the big picture 2. Easily and rapidly compare values 3. See patterns among values 4. Compare patterns 45

46 1. See the big picture 46

47 2. Easily and rapidly compare values 47

48 3. See patterns among values 48

49 4. Compare patterns 49

50 Bad reasons for visualizing data Because some people are visual learners Because some people have difficulty understanding numbers Because visuals are eye-catching and grab people s attention 50

51 Edward Tufte s Principles 1. Above all else, show the data 2. Maximize the data-ink ratio 3. Erase non-data-ink 4. Erase redundant data-ink 5. Revise and edit 51

52 The Data-Ink Ratio Data Ink Ratio = Data ink Total ink used in graphic Data-ink is the non-erasable core of a graphic 52

53 Device Category Low vs. High Data-Ink Ratio Low Data-Ink Ratio High Data-Ink Ratio Sessions 0 10,000 20,000 30,000 40,000 Sessions Smartphone Smartphone 32,354 Desktop Desktop 22,718 Tablet Tablet 2,733 53

54 Sessions Sessions Low vs. High Data-Ink Ratio Low Data-Ink Ratio High Data-Ink Ratio Referral Direct Organic 45k Direct 45,000 40,000 Organic 35,000 30,000 30k 25,000 20,000 15,000 15k 10,000 5,000 Referral 0 Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec 0 Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec 54

55 Perfection is achieved not when there is nothing more to add, but when there is nothing left to take away. ~ Antoine de Saint-Exupery 55

56 Hierarchy of Visual Perception 1. Position along a common scale 2. Position on identical but non-aligned scales 3. Length 4. Angle & Slope 5. Area 6. Volume, density, and color saturation 7. Colour hue 56

57 Do you like pie? How different are the black slices between A and B? Is the green slice bigger in B or C? Is either bigger than A? 57

58 This is why pie charts suck. 58

59 The only worse design than a pie chart is several of them. ~ Edward Tufte 59

60 Exercise: Olympics Data Using a Google Sheet 60

61 Exercise: Summer Olympics Data 1. Connect to the Summer Olympics data set a) Open the Rio 2016 Summer Olympics Medal Results data set in Google Sheets (Link on Course Resources page) b) Make a copy of the sheet in your own Google Drive c) Create a new data source in Data Studio d) Select the Google Sheets connector e) Select the Rio 2016 Google Sheet f) Click Connect 61

62 Exercise: Summer Olympics Data 2. Create 4 calculated fields Total Medals Gold Medals Silver Medals Bronze Medals Hint: CASE WHEN Medal="Gold" THEN 1 ELSE 0 END 62

63 Exercise: Summer Olympics Data 3. Build a report that tells a story about the 2016 Olympics Use charts, tables, and filters to highlight parts of the data Insert titles, text, and images to support your story Keep it simple. Minimize non-data ink. 4. Share your finished report with msoares@clickinsight.ca 63

64 Exercise: Twitter Data Using a CSV File Upload 64

65 Exercise: Trump s Tweets 1. Connect to the Trump Tweets data set a) Download the trumptweets.csv data set from the Course Resources page b) Create a new data source using the File Upload connector c) Upload the trumptweets.csv file 2. Create a new report 3. Use Data Studio to tell a story about the data set 4. Share your finished report with msoares@clickinsight.ca 65

66 Contact Marc Soares Senior Digital Analytics Consultant ClickInsight Toronto, ClickInsight.ca 66

67 67

DecisionPoint For Excel

DecisionPoint For Excel DecisionPoint For Excel Getting Started Guide 2015 Antivia Group Ltd Notation used in this workbook Indicates where you need to click with your mouse Indicates a drag and drop path State >= N Indicates

More information

This report is based on sampled data. Jun 1 Jul 6 Aug 10 Sep 14 Oct 19 Nov 23 Dec 28 Feb 1 Mar 8 Apr 12 May 17 Ju

This report is based on sampled data. Jun 1 Jul 6 Aug 10 Sep 14 Oct 19 Nov 23 Dec 28 Feb 1 Mar 8 Apr 12 May 17 Ju 0 - Total Traffic Content View Query This report is based on sampled data. Jun 1, 2009 - Jun 25, 2010 Comparing to: Site 300 Unique Pageviews 300 150 150 0 0 Jun 1 Jul 6 Aug 10 Sep 14 Oct 19 Nov 23 Dec

More information

Monthly SEO Report. Example Client 16 November 2012 Scott Lawson. Date. Prepared by

Monthly SEO Report. Example Client 16 November 2012 Scott Lawson. Date. Prepared by Date Monthly SEO Report Prepared by Example Client 16 November 212 Scott Lawson Contents Thanks for using TrackPal s automated SEO and Analytics reporting template. Below is a brief explanation of the

More information

John Biancamano Inbound Digital LLC InboundDigital.net

John Biancamano Inbound Digital LLC InboundDigital.net John Biancamano Inbound Digital LLC 609.865.7994 InboundDigital.net About Me Owner of Inbound Digital, LLC digital marketing consulting and training: websites, SEO, advertising, and social media. Senior

More information

Beacon Catalog. Categories:

Beacon Catalog. Categories: Beacon Catalog Find the Data Beacons you need to build Custom Dashboards to answer your most pressing digital marketing questions, enable you to drill down for more detailed analysis and provide the data,

More information

Today s Vision Tomorrow s Reality. Brian Beaulieu CEO

Today s Vision Tomorrow s Reality. Brian Beaulieu CEO Canadian Institute of Plumbing and Heating Today s Vision Tomorrow s Reality Brian Beaulieu CEO 215 Forecast Results 2 Duration 215 Forecast Result Accuracy US GDP 18 $16.632 Trillion $16.442 Trillion

More information

Instructor : Dr. Sunnie Chung. Independent Study Spring Pentaho. 1 P a g e

Instructor : Dr. Sunnie Chung. Independent Study Spring Pentaho. 1 P a g e ABSTRACT Pentaho Business Analytics from different data source, Analytics from csv/sql,create Star Schema Fact & Dimension Tables, kettle transformation for big data integration, MongoDB kettle Transformation,

More information

Intellicus Enterprise Reporting and BI Platform

Intellicus Enterprise Reporting and BI Platform Designing Adhoc Reports Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Designing Adhoc Reports i Copyright 2012 Intellicus Technologies This

More information

TURN DATA INTO ACTIONABLE INSIGHTS. Google Analytics Workshop

TURN DATA INTO ACTIONABLE INSIGHTS. Google Analytics Workshop TURN DATA INTO ACTIONABLE INSIGHTS Google Analytics Workshop The Value of Analytics Google Analytics is more than just numbers and stats. It tells the story of how people are interacting with your brand

More information

Overview What s Google Analytics? The Google Analytics implementation formula. Steps involved in installing Google Analytics.

Overview What s Google Analytics? The Google Analytics implementation formula. Steps involved in installing Google Analytics. Google Analytics Overview What s Google Analytics? The Google Analytics implementation formula. Steps involved in installing Google Analytics. Tracking events, campaigns and ecommerce data. Creating goals

More information

Exercise 1: Introduction to MapInfo

Exercise 1: Introduction to MapInfo Geog 578 Exercise 1: Introduction to MapInfo Page: 1/22 Geog 578: GIS Applications Exercise 1: Introduction to MapInfo Assigned on January 25 th, 2006 Due on February 1 st, 2006 Total Points: 10 0. Convention

More information

Designing Adhoc Reports

Designing Adhoc Reports Designing Adhoc Reports Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Copyright 2010 Intellicus Technologies This document and its content

More information

Microsoft Excel 2007

Microsoft Excel 2007 Learning computers is Show ezy Microsoft Excel 2007 301 Excel screen, toolbars, views, sheets, and uses for Excel 2005-8 Steve Slisar 2005-8 COPYRIGHT: The copyright for this publication is owned by Steve

More information

KOOTENAY ROCKIES TOURISM. Google Analytics Annual Report 2016

KOOTENAY ROCKIES TOURISM. Google Analytics Annual Report 2016 KOOTENAY ROCKIES TOURISM Google Analytics Annual Report 2016 Report Created By Navigator Multimedia Inc. March 30, 2017 TABLE OF CONTENTS TABLE OF CONTENTS 2016 OVERVIEW 1 2016 vs 2015: Noteworthy KPI

More information

E.164 National Numbering for Canada as Part of Country Code 1

E.164 National Numbering for Canada as Part of Country Code 1 CANADA E.164 National Numbering for Canada as Part of Country Code 1 Canada is part of Country Code 1, and participates in the North American Number Plan (NANP) with the USA and 18 Caribbean nations. A

More information

ICT PROFESSIONAL MICROSOFT OFFICE SCHEDULE MIDRAND

ICT PROFESSIONAL MICROSOFT OFFICE SCHEDULE MIDRAND ICT PROFESSIONAL MICROSOFT OFFICE SCHEDULE MIDRAND BYTES PEOPLE SOLUTIONS Bytes Business Park 241 3rd Road Halfway Gardens Midrand Tel: +27 (11) 205-7000 Fax: +27 (11) 205-7110 Email: gauteng.sales@bytes.co.za

More information

MicroStrategy Academic Program

MicroStrategy Academic Program MicroStrategy Academic Program Creating a center of excellence for enterprise analytics and mobility. HOW TO DEPLOY ENTERPRISE ANALYTICS AND MOBILITY ON AWS APPROXIMATE TIME NEEDED: 1 HOUR In this workshop,

More information

Kenora Public Library. Computer Training. Introduction to Excel

Kenora Public Library. Computer Training. Introduction to Excel Kenora Public Library Computer Training Introduction to Excel Page 2 Introduction: Spreadsheet programs allow users to develop a number of documents that can be used to store data, perform calculations,

More information

GrandMaster II Release Notes

GrandMaster II Release Notes GrandMaster II Release Notes The release notes included in this document are cumulative and include changes beginning from our January 2006 release (v 7.70) Dec 17th, 2018 (v14.00) Added the federal and

More information

How To Set Up Your First Google Analytics Dashboard - SkiftEDU Skift

How To Set Up Your First Google Analytics Dashboard - SkiftEDU Skift pagina 1 van 10 HOW-TOS GOOGLE TOOLS Editor s Note: As we are building our SkiftEDU service for marketers and SMBs in travel, we recently launched a new initiative: our new weekly series on digital marketing

More information

Google Analytics. Tips & Tricks for Your Business. Interactive Marketing Summit. Laurel Highlands Visitor Bureau

Google Analytics. Tips & Tricks for Your Business. Interactive Marketing Summit. Laurel Highlands Visitor Bureau Google Analytics Tips & Tricks for Your Business Session Topics: 1. Getting to know the dashboard 2. Metrics and dimensions 3. What reports to use 4. User tips to segment your data 5. Tracking your paid

More information

MicroStrategy Academic Program

MicroStrategy Academic Program MicroStrategy Academic Program Creating a center of excellence for enterprise analytics and mobility. GEOSPATIAL ANALYTICS: HOW TO VISUALIZE GEOSPATIAL DATA ON MAPS AND CUSTOM SHAPE FILES APPROXIMATE TIME

More information

COURSE LISTING. Courses Listed. with SAP Hybris Marketing Cloud. 24 January 2018 (23:53 GMT) HY760 - SAP Hybris Marketing Cloud

COURSE LISTING. Courses Listed. with SAP Hybris Marketing Cloud. 24 January 2018 (23:53 GMT) HY760 - SAP Hybris Marketing Cloud with SAP Hybris Marketing Cloud Courses Listed HY760 - SAP Hybris Marketing Cloud C_HYMC_1702 - SAP Certified Technology Associate - SAP Hybris Marketing Cloud (1702) Implementation Page 1 of 12 All available

More information

Analyzing Google Analytics

Analyzing Google Analytics May 2018 Analyzing Google Analytics 1. Primary & Secondary Dimensions 2. Bounce Rate & Other Data Definitions 3. Events 4. Goals 5. Help & Training Difference Between Dimensions & Metrics Primary Dimensions

More information

Dashboard. Jan 13, Jan 8, 2012 Comparing to: Site. 12,742 Visits % Bounce Rate. 00:05:26 Avg. Time on Site.

Dashboard. Jan 13, Jan 8, 2012 Comparing to: Site. 12,742 Visits % Bounce Rate. 00:05:26 Avg. Time on Site. Dashboard 3 3 15 15 Jan 17 Feb 18 Mar 22 Apr 23 May 25 Jun 26 Jul 28 Aug 29 Sep 3 Nov 1 Dec 3 Ja Site Usage 12,742 4.3% Bounce Rate 39,496 Pageviews :5:26 Avg. Time on Site 3.1 Pages/Visit 61.73% % New

More information

Step 10 Visualisation Carlos Moura

Step 10 Visualisation Carlos Moura Step 10 Visualisation Carlos Moura COIN 2017-15th JRC Annual Training on Composite Indicators & Scoreboards 06-08/11/2017, Ispra (IT) Effective communication through visualization Why investing on visual

More information

Style Report Enterprise Edition

Style Report Enterprise Edition INTRODUCTION Style Report Enterprise Edition Welcome to Style Report Enterprise Edition! Style Report is a report design and interactive analysis package that allows you to explore, analyze, monitor, report,

More information

COMPUTERIZED BUSINESS APPLICATIONS CURRICULUM MAP. Week Content Skills Activities/Assessment Frameworks

COMPUTERIZED BUSINESS APPLICATIONS CURRICULUM MAP. Week Content Skills Activities/Assessment Frameworks COMPUTERIZED BUSINESS APPLICATIONS CURRICULUM MAP EUREKA SPRINGS HIGH SCHOOL BUSINESS DEPARTMENT Grade Level: 09-12 Revision Date: August 2014 Week Content Skills Activities/Assessment Frameworks Aug 19

More information

Course Outline. Microsoft Office 2007 Boot Camp for Managers

Course Outline. Microsoft Office 2007 Boot Camp for Managers Course Outline Microsoft Office 2007 Boot Camp for Managers This powerful boot camp is designed to quickly enhance and expand your existing knowledge of Microsoft Office 2007 and take it to the next level,

More information

Canadian ecommerce Monthly Trends Report

Canadian ecommerce Monthly Trends Report November 12 Canadian ecommerce Monthly Trends Report SPECIAL EDITION: Black Friday & Cyber Monday Demac Media 71 King St. East, Suite 301, Toronto, ON M5C 1G3 www.demacmedia.com 2 Canadian ecommerce Monthly

More information

Concepts of Information Technology. Introduction to Windows 8

Concepts of Information Technology. Introduction to Windows 8 ADVANCED CERTIFICATE IN INFORMATION TECHNOLOGY What is Information Technology What is Computer History of Computer What is Operating System Windows History Windows Environment A First Look at the Windows

More information

Classroom Course Description. Course Outline. Tableau Intermediate & Advance. Audience

Classroom Course Description. Course Outline. Tableau Intermediate & Advance. Audience Classroom Course Description Tableau Intermediate & Advance Audience Tableau Fundamentals & Advance serves the beginner to intermediate Tableau user, targeted towards anyone who works with data regardless

More information

Decision Making Information from Your Mobile Device with Today's Rockwell Software

Decision Making Information from Your Mobile Device with Today's Rockwell Software Decision Making Information from Your Mobile Device with Today's Rockwell Software PUBLIC Rockwell Automation TechED 2016 @ROKTechED #ROKTechED Copyright 2016 Rockwell Automation, Inc. All Rights Reserved.

More information

alteryx training courses

alteryx training courses alteryx training courses alteryx designer 2 day course This course covers Alteryx Designer for new and intermediate Alteryx users. It introduces the User Interface and works through core Alteryx capability,

More information

TRACKING YOUR WEBSITE WITH GOOGLE ANALYTICS CHRIS EDWARDS

TRACKING YOUR WEBSITE WITH GOOGLE ANALYTICS CHRIS EDWARDS TRACKING YOUR WEBSITE WITH GOOGLE ANALYTICS CHRIS EDWARDS Hi, I am Chris Edwards Data Nerd & Agency Owner Website Developer 18 years WordPress Developer 6 years Google Analytics 13 years Digital Marketer/SEO

More information

Access the Google Analytics Demo Account. b/demoaccount

Access the Google Analytics Demo Account.   b/demoaccount Access the Google Analytics Demo Account https://analytics.google.com/analytics/we b/demoaccount Introduction to Web Traffic Assessment with Google Analytics Lisa Gayhart User Experience Librarian UX Lab

More information

Chapter 3. Determining Effective Data Display with Charts

Chapter 3. Determining Effective Data Display with Charts Chapter 3 Determining Effective Data Display with Charts Chapter Introduction Creating effective charts that show quantitative information clearly, precisely, and efficiently Basics of creating and modifying

More information

U.S. Digital Video Benchmark Adobe Digital Index Q2 2014

U.S. Digital Video Benchmark Adobe Digital Index Q2 2014 U.S. Digital Video Benchmark Adobe Digital Index Q2 2014 Table of contents Online video consumption 3 Key insights 5 Online video start growth 6 Device share of video starts 7 Ad start per video start

More information

MicroStrategy Academic Program

MicroStrategy Academic Program MicroStrategy Academic Program Creating a center of excellence for enterprise analytics and mobility. DATA PREPARATION: HOW TO WRANGLE, ENRICH, AND PROFILE DATA APPROXIMATE TIME NEEDED: 1 HOUR TABLE OF

More information

Carriers Face Challenge as Customers Keep Wireless Devices Longer, Use More Data, J.D. Power Finds

Carriers Face Challenge as Customers Keep Wireless Devices Longer, Use More Data, J.D. Power Finds Carriers Face Challenge as Customers Keep Wireless Devices Longer, Use More Data, J.D. Power Finds Videotron, and SaskTel Rank Highest in Respective Segments TORONTO: May 201 Customers in Canada are not

More information

A User Guide. Besides, this Getting Started guide, you ll find the Zoho Campaigns User Guide and many other additional resources at zoho.com.

A User Guide. Besides, this Getting Started guide, you ll find the Zoho Campaigns User Guide and many other additional resources at zoho.com. A User Guide Welcome to Zoho Campaigns! This guide will help you create and send your first email campaign. In addition to sending an email campaign, you ll learn how to create your first mailing list,

More information

Creating an with Constant Contact. A step-by-step guide

Creating an  with Constant Contact. A step-by-step guide Creating an Email with Constant Contact A step-by-step guide About this Manual Once your Constant Contact account is established, use this manual as a guide to help you create your email campaign Here

More information

PanelView Plus and Text Historian Guide

PanelView Plus and Text Historian Guide PanelView Plus and Text Historian Guide Version 12.4 SyTech, Inc. The Complete Reporting Solution Information in this document is subject to change without notice. SyTech, Inc. assumes no responsibility

More information

Visualization Creator 03/30/06

Visualization Creator 03/30/06 Visualization Creator 03/30/06 Overview In order to clearly communicate the interaction of various elements within the Visualization Creator (VC), we have described several scenarios in which the VC would

More information

PERFORMANCE DASHBOARDS

PERFORMANCE DASHBOARDS ASOA 2017 Bring Focus Using PERFORMANCE DASHBOARDS KAY COULSON, PRESIDENT ELECTIVE MEDICAL MARKETING A BIT ABOUT ME IN THE BEGINNING LIFE BEFORE EYES CENTER OPENED CONSULTING WORLDWIDE FINANCIAL DISCLOSURES

More information

2016 MEDIA INFORMATION. energyegypt.net

2016 MEDIA INFORMATION. energyegypt.net 2016 MEDIA INFORMATION energyegypt.net Introduction Energy Egypt offers you many opportunities to deliver your message and expand your reach worldwide via our marketing tools. Target industry-specific

More information

"You can t manage what you can t measure." Peter Drucker, management consultant, educator, and author

You can t manage what you can t measure. Peter Drucker, management consultant, educator, and author THE 4 1 2 MINUTE GUIDE TO GOOGLE ANALYTICS "You can t manage what you can t measure." Peter Drucker, management consultant, educator, and author Google Analytics is a comprehensive software platform that

More information

Switching to Sheets from Microsoft Excel Learning Center gsuite.google.com/learning-center

Switching to Sheets from Microsoft Excel Learning Center gsuite.google.com/learning-center Switching to Sheets from Microsoft Excel 2010 Learning Center gsuite.google.com/learning-center Welcome to Sheets Now that you've switched from Microsoft Excel to G Suite, learn how to use Google Sheets

More information

How to Excel - Part 2

How to Excel - Part 2 Table of Contents Exercise 1: Protecting cells and sheets... 3 Task 1 Protecting sheet... 3 Task 2 Protecting workbook... 3 Task 3 Unprotect workbook and sheet... 3 Task 4 Protecting cells... 4 Protecting

More information

Once the Google Analytics reports are loaded you will have the following tabs: Traffic Overview, Top Pages, Referrers, Devices, and Locations.

Once the Google Analytics reports are loaded you will have the following tabs: Traffic Overview, Top Pages, Referrers, Devices, and Locations. Google Analytics for Websites The Google Analytics tab in the top tool bar of your website will allow you to view the Google Analytics for your website. Login to your website and select the Google Analytics

More information

LizardThemes.com Free & Premium WordPress Themes. LizardThemes. User Guide. First Edition

LizardThemes.com Free & Premium WordPress Themes. LizardThemes. User Guide. First Edition LizardThemes.com Free & Premium WordPress Themes LizardThemes User Guide First Edition Online version: http://lizardthemes.com/documentation/ 2013 Contents Chapter 1 How to start... 3 Chapter 2 Theme Settings...

More information

DASHBOARDS, WEBSITE, REPORTING & ELEARNING TRAINING

DASHBOARDS, WEBSITE, REPORTING & ELEARNING TRAINING www. @CCTRVA Richmond, Virginia 23233 A division of Commonwealth Personnel Consultants, Inc. DASHBOARDS, WEBSITE, REPORTING & ELEARNING TRAINING A business dashboard is a consolidated display of worksheets

More information

Designing Adhoc Reports

Designing Adhoc Reports Designing Adhoc Reports Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Designing Adhoc Reports i Copyright 2012 Intellicus Technologies This

More information

GETTING STARTED. My C21 Site can be accessed from 2 places in 21Online.com

GETTING STARTED. My C21 Site can be accessed from 2 places in 21Online.com 1 GETTING STARTED My C21 Site can be accessed from 2 places in 21Online.com 1- The Tools link at the top navigation menu 2- Tool Library Widget - Scroll down to the tool name. 2 FROM TOOLS Link (Top Navigation

More information

Replay available. Watch it now

Replay available. Watch it now Replay available In this webinar replay, Daniel Burstein, Director of Editorial Content, MECLABS, and Ryan Hutchings, Director of Marketing, VacationRoost, discuss testing strategies from the stage at

More information

Microsoft Office Illustrated. Using Tables

Microsoft Office Illustrated. Using Tables Microsoft Office 2007 - Illustrated Using Tables Objectives Plan a Table Create a Table Add Table Data Find and Replace Table Data Delete Table Data 2 Objectives Sort Table Data Use Formulas in a Table

More information

Mapping discarded needles in Fusion Tables Tutorial

Mapping discarded needles in Fusion Tables Tutorial Mapping discarded needles in Fusion Tables Tutorial In the previous tutorials, we ve learned how to turn pivot tables into heat maps and place colour code geographic points using markers that Fusion Tables

More information

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2010

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2010 DOING MORE WITH EXCEL: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites What You Will Learn MORE TASKS IN MICROSOFT EXCEL PAGE 03 Cutting, Copying, and Pasting Data Filling Data Across Columns

More information

Field Served: TOTAL AVERAGE QUALIFIED PAID & NONPAID CIRCULATION 20,352

Field Served: TOTAL AVERAGE QUALIFIED PAID & NONPAID CIRCULATION 20,352 ELECTRICAL BUSINESS BUSINESS PUBLICATION Publisher s Statement 6 months ended June 30, 2017 Subject to Audit Field Served: ELECTRICAL BUSINESS serves electrical contractors; utilities; basic industries

More information

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013 DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013 GETTING STARTED PAGE 02 Prerequisites What You Will Learn MORE TASKS IN MICROSOFT EXCEL PAGE 03 Cutting, Copying, and Pasting Data Basic Formulas Filling Data

More information

understanding media metrics WEB METRICS Basics for Journalists FIRST IN A SERIES

understanding media metrics WEB METRICS Basics for Journalists FIRST IN A SERIES understanding media metrics WEB METRICS Basics for Journalists FIRST IN A SERIES Contents p 1 p 3 p 3 Introduction Basic Questions about Your Website Getting Started: Overall, how is our website doing?

More information

VERINT EFM 8.0 Release Overview

VERINT EFM 8.0 Release Overview VERINT EFM 8.0 Release Overview In January of 2015 Verint will release version 8.0 of the Enterprise Feedback Management (EFM) solution. Verint hosted SaaS customers will receive this update as part of

More information

Staff Microsoft Office Training Workshops

Staff Microsoft Office Training Workshops Staff Microsoft Office Training Workshops To see Course Information Hold down the CTRL key on the keyboard & click on the page number Contents Introduction to Office 365... 1 Introduction to Access Database

More information

Hands-On Lab. Developing BI Applications. Lab version: Last updated: 2/23/2011

Hands-On Lab. Developing BI Applications. Lab version: Last updated: 2/23/2011 Hands-On Lab Developing BI Applications Lab version: 1.0.0 Last updated: 2/23/2011 CONTENTS OVERVIEW... 3 EXERCISE 1: USING THE CHART WEB PART... 4 Task 1 Add the Chart Web Part to the page... 4 Task 2

More information

BUYER S GUIDE WEBSITE DEVELOPMENT

BUYER S GUIDE WEBSITE DEVELOPMENT BUYER S GUIDE WEBSITE DEVELOPMENT At Curzon we understand the importance of user focused design. EXECUTIVE SUMMARY This document is designed to provide prospective clients with a short guide to website

More information

Workbooks (File) and Worksheet Handling

Workbooks (File) and Worksheet Handling Workbooks (File) and Worksheet Handling Excel Limitation Excel shortcut use and benefits Excel setting and custom list creation Excel Template and File location system Advanced Paste Special Calculation

More information

CONTENT CALENDAR USER GUIDE SOCIAL MEDIA TABLE OF CONTENTS. Introduction pg. 3

CONTENT CALENDAR USER GUIDE SOCIAL MEDIA TABLE OF CONTENTS. Introduction pg. 3 TABLE OF CONTENTS SOCIAL MEDIA Introduction pg. 3 CONTENT 1 Chapter 1: What Is Historical Optimization? pg. 4 2 CALENDAR Chapter 2: Why Historical Optimization Is More Important Now Than Ever Before pg.

More information

Creating an with Constant Contact. A step-by-step guide

Creating an  with Constant Contact. A step-by-step guide Creating an Email with Constant Contact A step-by-step guide About this Manual Once your Constant Contact account is established, use this manual as a guide to help you create your email campaign Here

More information

Every product has a story. Let ScanLife tell it.

Every product has a story. Let ScanLife tell it. Every product has a story. Let ScanLife tell it. Think of ScanLife as the get more button. And you decide what happens when they press it. Go to website Save a contact Initiate a call Send an SMS Send

More information

Setup Google Analytics

Setup Google Analytics Setup Google Analytics 1.1 Sign Up Google Analytics 1. Once you have a Google account, you can go to Google Analytics (https://analytics.google.com) and click the Sign into Google Analytics button. You

More information

SeisVolE Teaching Modules Preliminary, Draft Instructions (L. Braile and S. Braile, 5/28/01,

SeisVolE Teaching Modules Preliminary, Draft Instructions (L. Braile and S. Braile, 5/28/01, SeisVolE Teaching Modules Preliminary, Draft Instructions (L. Braile and S. Braile, 5/28/01, www.eas.purdue.edu/~braile) 1. Make Your Own Map a. Open the view with that contains your area of interest (for

More information

ScholarOne Manuscripts. COGNOS Reports User Guide

ScholarOne Manuscripts. COGNOS Reports User Guide ScholarOne Manuscripts COGNOS Reports User Guide 1-May-2018 Clarivate Analytics ScholarOne Manuscripts COGNOS Reports User Guide Page i TABLE OF CONTENTS USE GET HELP NOW & FAQS... 1 SYSTEM REQUIREMENTS...

More information

Spreadsheet definition: Starting a New Excel Worksheet: Navigating Through an Excel Worksheet

Spreadsheet definition: Starting a New Excel Worksheet: Navigating Through an Excel Worksheet Copyright 1 99 Spreadsheet definition: A spreadsheet stores and manipulates data that lends itself to being stored in a table type format (e.g. Accounts, Science Experiments, Mathematical Trends, Statistics,

More information

Create, Customize & Send an

Create, Customize & Send an How-To Guide Create, Customize & Send an Email Getting your first email out the door is easy with Constant Contact. This guide will walk you through creating, customizing, and sending an email to your

More information

OVERVIEW GOOGLE ANALYTICS

OVERVIEW GOOGLE ANALYTICS OVERVIEW GOOGLE ANALYTICS What is Google Analytics? Google Analytic identifies a website s target audience members for desktop and mobile [aka the users ], articulates what success means to a site s visitor,

More information

COMPUTER. Athens. This introductory course will provide the student with hands-on computer lab experience in. Athens

COMPUTER. Athens. This introductory course will provide the student with hands-on computer lab experience in. Athens COMPUTER Introduction to Computers Windows 7 ITSC 1006 (ITSC 2037) This introductory course will provide the student with hands-on computer lab experience in learning basic computer components, terminology,

More information

Maximising Search Engine Marketing. Search Marketing and Google Analytics

Maximising Search Engine Marketing. Search Marketing and Google Analytics Maximising Search Engine Marketing Search Marketing and Google Analytics Why Digital Marketing? UK Business Digital Index 2016 52% state cost savings is one of the advantages to being online, a significant

More information

Maximizer CRM. Customer Service Maximizer CRM 2017 VERSION COMPARISON FOR WEB ACCESS (EMEA) Maximizer CRM 2016/R2.

Maximizer CRM. Customer Service Maximizer CRM 2017 VERSION COMPARISON FOR WEB ACCESS (EMEA) Maximizer CRM 2016/R2. VERSION COMPARISON FOR WEB ACCESS (EMEA) Sales Support multiple sales processes Track opportunity stage age Track overall opportunity age Monitor progress by comparing stage age with target age Opportunity

More information

From a laptop or desktop computer.

From a laptop or desktop computer. Using Office 365 Signing in to Office 365 Office 365 is a web-based office suite that allows the user to create, edit, and share documents and presentations from any internet enabled computer, tablet,

More information

Tableau Advanced Training. Student Guide April x. For Evaluation Only

Tableau Advanced Training. Student Guide April x. For Evaluation Only Tableau Advanced Training Student Guide www.datarevelations.com 914.945.0567 April 2017 10.x Contents A. Warm Up 1 Bar Chart Colored by Profit 1 Salary Curve 2 2015 v s. 2014 Sales 3 VII. Programmatic

More information

Lab 01. Creating and Exploring a Microsoft Power BI Dashboard

Lab 01. Creating and Exploring a Microsoft Power BI Dashboard Lab 01 Creating and Exploring a Microsoft Power BI Dashboard Overview The estimated time to complete lab is 30 minutes In this lab, you will create a Microsoft Power BI dashboard to report on the US sales

More information

INFORMATION TECHNOLOGY SPREADSHEETS. Part 1

INFORMATION TECHNOLOGY SPREADSHEETS. Part 1 INFORMATION TECHNOLOGY SPREADSHEETS Part 1 Page: 1 Created by John Martin Exercise Built-In Lists 1. Start Excel Spreadsheet 2. In cell B1 enter Mon 3. In cell C1 enter Tue 4. Select cell C1 5. At the

More information

Table of Contents. Preface... iii COMPUTER BASICS WINDOWS XP

Table of Contents. Preface... iii COMPUTER BASICS WINDOWS XP Table of Contents Preface... iii COMPUTER BASICS Fundamentals of Computer 1 Various Types of Computers 2 Personal Computer 2 Personal Digital Assistant 3 Laptop Computer 3 Tablet PC 3 Main Frame Computer

More information

User Interface Document version

User Interface Document version User Interface Document version 1.6 2018 Table of contents 1 General information 1.1 General technical remarks 1.2 User interface composition 1.3 Profile settings 1.4 Structure of the main menu 2 User

More information

REDESIGNING YOUR WEBSITE USING ONLINE PRESENCE BUILDER CUSTOMER USER GUIDE

REDESIGNING YOUR WEBSITE USING ONLINE PRESENCE BUILDER CUSTOMER USER GUIDE REDESIGNING YOUR WEBSITE USING ONLINE PRESENCE BUILDER CUSTOMER USER GUIDE 1 CONTENTS 1 GETTING STARTED...3 2 PLANNING...4 3 BACKING UP YOUR WEBSITE...5 4 REFRESHING YOUR WEBSITE...6 4.1 SETTING UP YOUR

More information

The following topics describe how to work with reports in the Firepower System:

The following topics describe how to work with reports in the Firepower System: The following topics describe how to work with reports in the Firepower System: Introduction to Reports Introduction to Reports, on page 1 Risk Reports, on page 1 Standard Reports, on page 2 About Working

More information

Apps from K15t Software help teams work better together in Confluence and Jira.

Apps from K15t Software help teams work better together in Confluence and Jira. Apps from K15t Software help teams work better together in Confluence and Jira. GET IN TOUCH Over 5000 organizations around the world use K15t Software s apps to enhance and expand the project collaboration

More information

Web Manual: Checkbox Surveys March 2014

Web Manual: Checkbox Surveys March 2014 March 2014 Suite 115, 1665 West Broadway, Vancouver, BC V6J 5A4 T. 1800.665.2262 F. 604.638.2916 www.divisionsbc.ca Table of Contents Getting Started... 3 Survey Checklist... 4 Group & User Management...

More information

At-Home Final Exam Project Directions BPC110 Computer Usage and Application

At-Home Final Exam Project Directions BPC110 Computer Usage and Application At-Home Final Exam Project Directions BPC110 Computer Usage and Application SCENARIO You are the Sales Manager for the LLC Computer Store. The computer store buys and sells computers from a number of different

More information

Learn how to login to Sitefinity and what possible errors you can get if you do not have proper permissions.

Learn how to login to Sitefinity and what possible errors you can get if you do not have proper permissions. USER GUIDE This guide is intended for users of all levels of expertise. The guide describes in detail Sitefinity user interface - from logging to completing a project. Use it to learn how to create pages

More information

Working with Reports

Working with Reports The following topics describe how to work with reports in the Firepower System: Introduction to Reports, page 1 Risk Reports, page 1 Standard Reports, page 2 About Working with Generated Reports, page

More information

TestOut Desktop Pro Plus - English 4.x.x. MOS Instructor Guide. Revised

TestOut Desktop Pro Plus - English 4.x.x. MOS Instructor Guide. Revised TestOut - English 4.x.x MOS Instructor Guide Revised 2017-10-18 2 Table of Contents General MOS Exam Information... 3 MOS Practice Exams... 4 Highly Recommended Videos and Class Activities... 5 Course

More information

Manual: Mailing report. This manual is written for Marcom Mailer en Campaigns

Manual: Mailing report. This manual is written for Marcom Mailer en Campaigns Manual: Mailing report This manual is written for Marcom Mailer en Campaigns Table of contents Introduction... 1 1 Structure of the mailing report... 2 1.1 General information tabs... 3 1.2 Preview...

More information

COURSE LISTING. Courses Listed. Training for Database & Technology with Modeling in SAP HANA. 20 November 2017 (12:10 GMT) Beginner.

COURSE LISTING. Courses Listed. Training for Database & Technology with Modeling in SAP HANA. 20 November 2017 (12:10 GMT) Beginner. Training for Database & Technology with Modeling in SAP HANA Courses Listed Beginner HA100 - SAP HANA Introduction Advanced HA300 - SAP HANA Certification Exam C_HANAIMP_13 - SAP Certified Application

More information

Introducing Survey123 For ArcGIS

Introducing Survey123 For ArcGIS FedGIS Conference February 24 25, 2016 Washington, DC Introducing Survey123 For ArcGIS James Tedrick, Esri Jawameer Kakakhan, UN OCHA Configurable Solutions That Work Together Vizualize Collect Navigator

More information

Sitecore Experience Platform 8.0 Rev: September 13, Sitecore Experience Platform 8.0

Sitecore Experience Platform 8.0 Rev: September 13, Sitecore Experience Platform 8.0 Sitecore Experience Platform 8.0 Rev: September 13, 2018 Sitecore Experience Platform 8.0 All the official Sitecore documentation. Page 1 of 455 Experience Analytics glossary This topic contains a glossary

More information

Computer Applications Final Exam Study Guide

Computer Applications Final Exam Study Guide Name: Computer Applications Final Exam Study Guide Microsoft Word 1. To use -and-, position the pointer on top of the selected text, and then drag the selected text to the new location. 2. The Clipboard

More information

Designing Adhoc Reports

Designing Adhoc Reports Designing Adhoc Reports Intellicus Web-based Reporting Suite Version 4.5 Enterprise Professional Smart Developer Smart Viewer Intellicus Technologies info@intellicus.com www.intellicus.com Copyright 2009

More information

B.E. Publishing Correlations to The Office Specialist.com, 2E to Microsoft Office Specialist Word 2016 Core (77-725)

B.E. Publishing Correlations to The Office Specialist.com, 2E to Microsoft Office Specialist Word 2016 Core (77-725) Correlations to The Office Specialist.com, 2E to Microsoft Office Specialist Word 2016 Core (77-725) B.E. Publishing Correlations to The Office Specialist.com, 2E to Microsoft Office Specialist Word 2016

More information

Business Insight Authoring

Business Insight Authoring Business Insight Authoring Getting Started Guide ImageNow Version: 6.7.x Written by: Product Documentation, R&D Date: August 2016 2014 Perceptive Software. All rights reserved CaptureNow, ImageNow, Interact,

More information