TC 2014 Hands on Presentation When Universes Collide: Table Joins in Tableau Guided PDF

Size: px
Start display at page:

Download "TC 2014 Hands on Presentation When Universes Collide: Table Joins in Tableau Guided PDF"

Transcription

1 TC 2014 Hands on Presentation When Universes Collide: Table Joins in Tableau Guided PDF Introduction - Anatomy of a Table Concepts and vocabulary used in this class Table - A set of values that is organized using a model of vertical columns (identified by unique header names) and horizontal rows. Field - Any unique column that can contain either qualitative data (dimensions such as dates, descriptions, or names) or quantitative data (measures such as sum, count, average). Row A line of cells containing data corresponding to each of the fields in the table. Data may be aggregated at any level, which is important to keep in mind when considering joining tables. Database A data structure that stores organized information. Most contain multiple tables. Typical examples of database schemas are the Star Schema and the Snowflake Schema, both of which contain a single central Fact Table connected to one or more Dimension Tables. Fact Table Contains the measures, metrics or values. Dimension Table Contains the descriptive attributes that allow for things like labeling, aggregating, grouping, or filtering of the measurements. 1

2 What is a Join? Joins combine related data from different tables When working with a relational database, such as Microsoft SQL Server or a flat file such as Excel, our data are often stored in different tables within our database. We can combine data from multiple tables in Tableau using Joins. For example, imagine that we have two tables. The first contains Patient Names and Patient IDs. The second table contains each patient s prescription information as well as Patient IDs. We can use the Patient ID field to link the two tables into one table. This allows us to see the patient names alongside their respective prescription information. Join Requirements To create a join it is necessary to have a common field between the tables (Primary and Foreign Key), in this case we have Patient ID. To create joins in Tableau, our tables must all be present in one single database. When using Excel the workbook represents the database and each sheet within the workbook is a different table. Types of Joins How tables are combined The types of joins that you are able to make within Tableau depend on the capabilities of your database. For example, Excel files are only capable of making Left Joins, Right Joins, and Inner Joins, while Microsoft SQL data can also have an Outer Join. Joins types are best understood via a Venn diagram as seen below. The shaded areas represent the data that is kept from each table for each join type. For example, in a Left Join all of the data is kept from the Primary table A and only the data that matches table A is joined from Secondary table B. If there are some Foreign Keys in table B that are not present as Primary Keys in table A then that information will not appear in the output table. 2

3 The images below show examples of Left Outer, Right Outer, and Inner Joins between our Patient Data Tables. 3

4 Other Joins There are two other techniques for combining data in Tableau Unions The two other techniques for combining data in Tableau are Unions and Data Blending. Unions append data to a dataset, like stacking one table on top of another. If we were to create a Union of tables 1 and 2 below, we would get the Unions results table containing all of the information from both original tables. 4

5 Unions Table 1: Bicycle Rides in June Date Trip Name Distance (miles) Duration (hh:mm:ss) 6/07/2014 Lake Union Loop :27:08 6/14/2014 Salmon Bay Loop :06:59 6/21/2014 Lake Washington Loop :11:36 Unions Table 2: Bicycle Rides in July Date Trip Name Distance (miles) Duration (hh:mm:ss) 7/05/2014 To and from Magnuson :47:02 Park 7/12/2014 Loop Lake Washington :05:47 Loop 7/26/2014 Over I-90 and back :13:06 Unions Results Table: My Entire Bicycle Ride History Date Trip Name Distance (miles) Duration (hh:mm:ss) 6/07/2014 Lake Union Loop :27:08 6/14/2014 Salmon Bay Loop :06:59 6/21/2014 Lake Washington Loop :11:36 7/05/2014 To and from Magnuson :47:02 Park 7/12/2014 Loop Lake Washington :05:47 Loop 7/26/2014 Over I-90 and back :13:06 For Unions to be possible, both tables must have the same number of columns with the same column names, and the effect is that the results table is lengthened rather than widened because rows of data are added. A Union can be achieved by creating an extract of a table and using the add data from a file option. They can also be done using the custom SQL dialog and writing a Union query between two tables in the same database. Data Blending Data Blending is similar to a Join in that it combines information from two tables based on a primary and Foreign Key. The main difference is that this combination is done in the view at a designated aggregation. The two tables are queried separately and the data from each are linked and aggregated in the view. A Join is done at the row level and results in the formation of a new single table. A data blend leaves both tables separate and results in a view of combined information. 5

6 Cardinality The relationships between tables There are three types of cardinality: One-to-One, One-to-Many, or Many-to-Many. The cardinality of a Join can have a major effect on the resulting table. If not dealt with properly, certain types of cardinality can produce incorrect metrics such as duplicated fields which may skew analysis. Cardinality s Effects Duplication of Records Joining tables that have One-to-Many or Many-to-Many relationships can produce resulting tables with duplicate values. 6

7 Database Schemas How tables are organized in a database Primary and Foreign Keys These identifying fields are used to establish and enforce a link between tables. Primary Keys are fields that uniquely identify each record (row) in a table. A Foreign Key uniquely identifies a row in another table. Star Schema Database model in which a Fact Table is connected directly to all of the Dimension Tables via Primary/Foreign Keys. Wikipedia: Snowflake Schema Database model in which a Fact Table is connected to Dimension Tables and those Dimension Tables are connected to other Dimension tables via Primary/Foreign Keys. Wikipedia: 7

8 Guided PDF Scenarios For the remainder of the session, we will work through four example scenarios containing exercises in creating Table Joins. Bonus scenarios are also available for those who complete scenarios 1-4 and would like additional challenge questions. NOTE: For all of the following exercises we will be using the legacy connector for Excel files. See below for instructions on how to do so. 1. Open Tableau Desktop and select Connect to data. 8

9 2. Select Microsoft Excel. 3. Click once on the One-to-Many file to highlight it. Then choose the drop down arrow right of the open option. Choose the second of the two options Open with Legacy Connection a. We will use the Legacy Connection because the new connection for Excel does not support all of the Join types that we will be using today. 9

10 Scenario 01: One-to-Many Our database stores Customer Sales and Shipping Location in separate tables. We would like to view a map showing where customers are located and a bar chart of sales by country. Notes: This is a One-to-One relationship. All of the shipping data for China was lost in a database failure. However, the Sales Table was unaffected so all of the Customer Sales data for China are still available. Considerations before you start: What is the common field across tables? Which table should I use as my primary? How will the Join type affect my results? (Think about the missing data in China.) 10

11 Scenario 01 Step by Step: 1. Use the Excel Legacy Connector to open the One-to-Many.xlsx file. All of the tables will now show up in the connection screen. 2. First, drag in the Customer sales Fact Table and then drag in the customer location Dimension Table. 3. Tableau will automatically recognize that the linking field between the two tables is Customer Name. The Join type will default to an Inner Join. 4. From the scenario notes we know that there are no shipping data for China in the customer location table. This is important to consider because if we leave an Inner Join we will lose the Customer Sales data for anyone who bought from China. This is because an Inner Join only combines the data that is present in both tables. Choose a Left Join to preserve the Customer Sales data for China. 5. Notice that when we choose a Left Join, null values appear in some of the rows in the data view. These represent the rows of data that contain Customer Sales data but no locational data. Because there was no linking field from the location table for customers in China, a null is put as a place holder for the those rows. 11

12 6. Go to the work sheet and build a map of all of the cities and a bar chart of sales by country. Learn how to build a Map: Learn how to build a bar chart: 7. China will not contain any data points on the map because it is not present in the location data. Also notice that upon sorting the countries in descending order of Sales, the second bar is Null. This represents all of the customers from China in our data set. 8. For practice, return to the connection screen by double clicking the data source. Change the Join type to Inner and go back to the worksheet. 12

13 Notice the Null is now removed from the bar chart. We have now removed all of the data associated with China from the Customer Sales Table with an Inner Join. Challenge01: Connect to the challenge01 workbook using the Legacy Connection and Join the sales and locational data together so that no data is lost in the Join. Then count the distinct number of customers that we have data for. There should be 62 customers with at least locational data available. Scenario 02: Many-to-Many Similar to the last scenario, we have Customer Sales data and location data stored separately. However, when customers purchase an item from us they are given the option to write down more than one home location. Because of this issue, there are sometimes multiple rows of location data for one customer if they have more than one home. We would like to map out where all of our customers have homes as well as view a chart of sales by customer. 13

14 Notes: This is a Many-to-Many relationship. There are no location data for customer 6. Considerations before you start: How can we account for duplicate rows that result from the Many-to-Many relationship? How will the Join type affect the lack of data for customer 6? Scenario 02 Step by Step: 1. Use the Excel Legacy Connector to open the Many-to-Many.xlsx file. 2. Drag in the Customer Sales Fact Table followed by the customer location Dimension Table. 3. Once again, Tableau will automatically recognize the linking field that is Customer ID and default to an Inner Join. 14

15 4. There are no locational data present for customer 6, so there is a similar situation to scenario 01. If we create an Inner Join we will lose all of the sales data for customer 6, but if we create a Left Join we can preserve the data and add Null values for the locational data of customer 6. Choose a Left Join. 15

16 5. Go to the worksheet and build a map of customer locations. This map should show all of the locations where customers have a home (first and second homes). This view should also display one unknown for customer 6 because we do not have their locational data. 6. Now create a bar chart of Sales by Customer. Use the Customer Name on rows with the customer id (from the Customer Sales Table) next to it. This will allow you to visualize the null associated with customer 6. Some of these values are incorrect because of the Many-to-Many relationship between our joined tables. Customers 1 and 2 (John and Nick) are showing sales values that are much larger than what they actually purchased. This is a result of these customers putting down multiple locations for their home in the location data. 16

17 If we drag out State and City to the view we can visualize where the Many-to-Many relationship is occurring. John has two homes and Nick has three homes. The sales values are now duplicated across each row of data for John and Nick. This means that the sales data were duplicated for each home that they own. 7. There are a variety of ways to get the graph to display the correct values. The easiest is to use a field which is unique for each customer that will filter out duplicated rows of data. In this case we can use the First Home? field to filter out all of the second homes. Right-click First Home? in the dimensions and choose show quick filter. 17

18 8. Uncheck the No option to remove all second homes. Notice that there is now a single row of data for each customer. This now displays the correct values. Challenge02: Sometimes there is not always a field that can easily be filtered to get correct results when dealing with a Many-to-Many relationship. In these cases we must find another way to get the proper results. Use the Many-to-Many Excel workbook for this challenge. You can also work off of the bar chart view created in scenario 02. For the bar chart of customer names and sales values create a calculated field that will result in the correct sales values without using any filters. The trick is to find a field that is creating the duplication of records. If the sales are being tripled than there is some field that is repeating three distinct times to make this happen. To get the correct sales we will need to divide the sales by the distinct count of this field. ***This method will not work for customer 6. Why not? 18

19 Scenario 03: multiple-tables We have a simple snowflake schema with one Fact Table and three Dimension Tables. The goal of this exercise is to combine all three tables and visualize the percentage of total sales that each manager is responsible for as well as view sales over time. Notes: There is a Many-to-Many relationship. One of the Foreign Keys has slightly different spelling than the Primary Key. In this case Tableau will not automatically recognize the common field. Considerations before you start: Which table contains the Many-to-Many relationship and why? How will the Many-to-Many relationship affect the end results? Find the Foreign Key that has different spelling before you start so that you know what to expect. 19

20 Scenario 03 Step by Step: 1. Use the Excel Legacy Connector to open the multiple-tables.xlsx file. 2. It may help to sketch the linking fields that combine each table. Remember that the Fact Table is in the center and the Dimension Tables surround it. This means that each Dimension Table should have a field that matches a field in the Fact Table. However, this is a snow-flake schema, so some tables may have linking fields to other Dimension Tables. 3. Drag in the Customer Sales Fact Table followed by customer location and products tables. Tableau will automatically find the linking fields. 4. Drag in the managers table and Tableau will immediately bring up the Join type and Join Clause dialog box. This is because it cannot find the linking field between managers table and the tables already present. We want to match the region field from the customer location table to the manager table. From the data source list find the field Regions under the customer location table and 20

21 from the managers table find the field Region. Because region has different spelling in each table Tableau cannot guess the linking field. 21

22 5. Change all of the Join types to Left to avoid losing any Customer Sales data just as we did in previous exercises. 6. Go to the worksheet and create a bar chart of sales by manager. 22

23 7. Right-click the Sales pill and create a quick table calculation percentage of total. Why are there 5 managers for 4 regions and why does Pat have 50% of the total sales? 23

24 8. Drag out Region to the view after Manager and notice that each manager is assigned to one region except for Pat who is assigned to all of the regions. This is because Pat is a VP and is responsible for all regions. Drag Region before Manager in the Columns Shelf to see that each sales bar is duplicated because of this Many-to-Many relationship. This will double all of our sales metrics throughout the analysis. Because of this we need to filter out Pat before we look at other metrics. Right-click on the manager s field and create a quick filter. Uncheck Pat s name. 24

25 Now we can create a graph of sales over time using the same filtering trick to get the proper results. 9. Create a graph of sales over time and apply the same manager filter to the worksheet unchecking Pat s name. Challenge 03: The best way to avoid a Many-to-Many relationship is to fix the problem straight form the source. This means restructuring the tables in a way that does not create a Many-to-Many relationship. In this particular scenario the mangers table is the source of the problem. Rather than using filtering or calculation tricks it would make more sense to change the way that the managers table is storing the data to fix the problem from the start. How can we restructure the managers table to avoid the Many-to-Many relationship? 25

26 Scenario 04: Self Join We want to better understand the purchase behavior of our customers. Specifically, we want to know what products individual customers purchase together. These types of analyses allow us to create effective packaged deals and make more efficient product placement in stores. In other words, let s find out what customers purchased paper and purchased binders, or paper and pens and art supplies. Create a heat map that shows the each combination of product sub-categories and how many customers purchased that combination. This is called a market basket analysis. Notes: We will need to create a Self-Join to accomplish this. It is important to think carefully about the type of Join (Inner/Outer) and the Joining clause. 26

27 Considerations before you start: We want to join each customer name to itself to get the level of detail desired. We are comparing each product sub-category to all the other product sub-categories. How do we write a Joining Clause that joins each product to all the other products but itself? Scenario 04 Step by Step: 1. Use the Excel Legacy Connector to open the Self-Join.xlsx file. 2. The reason for creating the Self Join in this scenario is to examine what sub-categories of products are purchased together. To do so we must compare each product sub-category for a given customer to every other product sub-category that they purchased. In order to compare product sub-category to itself, we need to Join the Customer Orders table to itself. Drag customer orders into the view. Drag customer orders again out to the view. 3. Tableau will give an exclamation mark because you are joining the table to itself. 27

28 4. First, we must set the level of detail for our Self Join. We wish to examine the relationships between product sub-categories for each customer. This means that the analysis will be done at the level of the Customer Name field. Set the customer name from the left table equal to the customer name in the right table. If we wanted to see what products customers purchased together in individual orders we would set the order ids equal to one another instead. 5. Now we must consider how to Join the product sub-category of each customer s purchase to all of the other sub-categories. This will give us a new record for each combination of sub-categories. Create a second Join Clause with product sub-category on the left and right tables. Set these keys not equal to each other using the < > symbol. 28

29 6. Go to the worksheet and notice that all of the dimensions are replicated across the two tables. 7. Drag out product sub-category from the first orders table to the rows and product subcategory from the second table to the columns. The order or shelf that you put each of these on is insignificant. The view now shows a matrix with each cell representing a combination of product sub-categories. 29

30 8. Dragging Number of Records into the color will now turn the matrix into a heat map with darker colors representing the most common combinations of product sub-categories. 9. Why are there blank cells running diagonal across the matrix? Challenge 04: Every combination of product sub-categories are repeated twice in the matrix we created from the market basket analysis. The diagonal splits blank spaces split this duplication in half. How can we remove the top or bottom half of this matrix so as to remove the duplications? This can be accomplished using joins or calculated fields. Challenge 05: The techniques used in market basket analysis are also applicable to other problems. If we have a data set with each row containing a trip id and the start and stop day of that trip it would be very difficult to calculate which trips are overlapping. However it is possible to use a Self-Join to find out which trips are overlapping. Use the challenge05 Excel doc to get a list of all the trips that are overlapping. For a further challenge create a Gantt chart that shows each trip with a bar expanding the time that the trip overlaps. Then color each trips bar if it overlaps with another trip. **This is a very difficult problem to solve do not expect to get this immediately. Challenge 06: We would like to create the visualization seen here: The above kb article shows how to use path data on maps with preformatted data. However, this is often not the way this type of data is stored so it requires some reshaping to get the results. Using the custom SQL in the connection dialog reshape the data so that we can create a map with distribution paths in Tableau. This challenge will require some knowledge in SQL. Challenge 07: Parameterize challenge 06 so that we can choose the state at the center of the paths. 30

Analyzing Excel Data Using Pivot Tables

Analyzing Excel Data Using Pivot Tables NDUS Training and Documentation Analyzing Excel Data Using Pivot Tables Pivot Tables are interactive worksheet tables you can use to quickly and easily summarize, organize, analyze, and compare large amounts

More information

Gantt Chart for Excel

Gantt Chart for Excel Project Management Templates for Excel http://spreadsheetml.com/projectmanagement/ganttchart.shtml Copyright (c) 2009-2010, ConnectCode All Rights Reserved. ConnectCode accepts no responsibility for any

More information

I. Create the base view with the data you want to measure

I. Create the base view with the data you want to measure Developing Key Performance Indicators (KPIs) in Tableau The following tutorial will show you how to create KPIs in Tableau 9. To get started, you will need the following: Tableau version 9 Data: Sample

More information

Microsoft Excel 2010 Pivot Tables

Microsoft Excel 2010 Pivot Tables Microsoft Excel 2010 Pivot Tables Email: training@health.ufl.edu Web Page: http://training.health.ufl.edu Microsoft Excel 2010: Pivot Tables 1.5 hours Topics include data groupings, pivot tables, pivot

More information

Advanced Excel Charts : Tables : Pivots : Macros

Advanced Excel Charts : Tables : Pivots : Macros Advanced Excel Charts : Tables : Pivots : Macros Charts In Excel, charts are a great way to visualize your data. However, it is always good to remember some charts are not meant to display particular types

More information

How To Create A Powerpoint Intelligence Report In A Pivot Table In A Powerpoints.Com

How To Create A Powerpoint Intelligence Report In A Pivot Table In A Powerpoints.Com Sage 500 ERP Intelligence Reporting Getting Started Guide 27.11.2012 Table of Contents 1.0 Getting started 3 2.0 Managing your reports 10 3.0 Defining report properties 18 4.0 Creating a simple PivotTable

More information

MicroStrategy Desktop

MicroStrategy Desktop MicroStrategy Desktop Quick Start Guide MicroStrategy Desktop is designed to enable business professionals like you to explore data, simply and without needing direct support from IT. 1 Import data from

More information

About PivotTable reports

About PivotTable reports Page 1 of 8 Excel Home > PivotTable reports and PivotChart reports > Basics Overview of PivotTable and PivotChart reports Show All Use a PivotTable report to summarize, analyze, explore, and present summary

More information

Introduction to Querying & Reporting with SQL Server

Introduction to Querying & Reporting with SQL Server 1800 ULEARN (853 276) www.ddls.com.au Introduction to Querying & Reporting with SQL Server Length 5 days Price $4169.00 (inc GST) Overview This five-day instructor led course provides students with the

More information

An Introduction to Excel Pivot Tables

An Introduction to Excel Pivot Tables An Introduction to Excel Pivot Tables EXCEL REVIEW 2001-2002 This brief introduction to Excel Pivot Tables addresses the English version of MS Excel 2000. Microsoft revised the Pivot Tables feature with

More information

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9.

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9. Working with Tables in Microsoft Word The purpose of this document is to lead you through the steps of creating, editing and deleting tables and parts of tables. This document follows a tutorial format

More information

Q&As: Microsoft Excel 2013: Chapter 2

Q&As: Microsoft Excel 2013: Chapter 2 Q&As: Microsoft Excel 2013: Chapter 2 In Step 5, why did the date that was entered change from 4/5/10 to 4/5/2010? When Excel recognizes that you entered a date in mm/dd/yy format, it automatically formats

More information

Toad for Data Analysts, Tips n Tricks

Toad for Data Analysts, Tips n Tricks Toad for Data Analysts, Tips n Tricks or Things Everyone Should Know about TDA Just what is Toad for Data Analysts? Toad is a brand at Quest. We have several tools that have been built explicitly for developers

More information

Excel 2003 PivotTables Summarizing, Analyzing, and Presenting Your Data

Excel 2003 PivotTables Summarizing, Analyzing, and Presenting Your Data The Company Rocks Excel 2003 PivotTables Summarizing, Analyzing, and Presenting Step-by-step instructions to accompany video lessons Danny Rocks 5/19/2011 Creating PivotTables in Excel 2003 PivotTables

More information

Building Better Dashboards PART 1: BASIC DASHBOARDS

Building Better Dashboards PART 1: BASIC DASHBOARDS Building Better Dashboards PART 1: BASIC DASHBOARDS For Questions or Feedback Alexandria Skrivanich or Michael Carpenter askrivanich@tableausoftware.com mcarpenter@tableausoftware.com 1 CREATING & LABELING

More information

In This Issue: Excel Sorting with Text and Numbers

In This Issue: Excel Sorting with Text and Numbers In This Issue: Sorting with Text and Numbers Microsoft allows you to manipulate the data you have in your spreadsheet by using the sort and filter feature. Sorting is performed on a list that contains

More information

Scientific Graphing in Excel 2010

Scientific Graphing in Excel 2010 Scientific Graphing in Excel 2010 When you start Excel, you will see the screen below. Various parts of the display are labelled in red, with arrows, to define the terms used in the remainder of this overview.

More information

ITS Training Class Charts and PivotTables Using Excel 2007

ITS Training Class Charts and PivotTables Using Excel 2007 When you have a large amount of data and you need to get summary information and graph it, the PivotTable and PivotChart tools in Microsoft Excel will be the answer. The data does not need to be in one

More information

Excel 2013 - Using Pivot Tables

Excel 2013 - Using Pivot Tables Overview A PivotTable report is an interactive table that allows you to quickly group and summarise information from a data source. You can rearrange (or pivot) the table to display different perspectives

More information

Excel Pivot Tables. Blue Pecan Computer Training Ltd - Onsite Training Provider www.bluepecantraining.com :: 0800 6124105 :: info@bluepecan.co.

Excel Pivot Tables. Blue Pecan Computer Training Ltd - Onsite Training Provider www.bluepecantraining.com :: 0800 6124105 :: info@bluepecan.co. Excel Pivot Tables 1 Table of Contents Pivot Tables... 3 Preparing Data for a Pivot Table... 3 Creating a Dynamic Range for a Pivot Table... 3 Creating a Pivot Table... 4 Removing a Field... 5 Change the

More information

Converting Dimensions to Measures & Changing Data Types

Converting Dimensions to Measures & Changing Data Types 1 Converting Dimensions to Measures & Changing Data Types When connecting to a data source, Tableau takes a best guess at the type of data contained in each column of your database. Tableau will assign

More information

Use Find & Replace Commands under Home tab to search and replace data.

Use Find & Replace Commands under Home tab to search and replace data. Microsoft Access 2: Managing Data in Tables and Creating Relationships You have created tables in an Access database. Data in Access tables can be added, deleted, and updated to be current (practiced in

More information

Microsoft Excel: Pivot Tables

Microsoft Excel: Pivot Tables Microsoft Excel: Pivot Tables Pivot Table Reports A PivotTable report is an interactive table that you can use to quickly summarize large amounts of data. You can rotate its rows and columns to see different

More information

Creating and Using Databases with Microsoft Access

Creating and Using Databases with Microsoft Access CHAPTER A Creating and Using Databases with Microsoft Access In this chapter, you will Use Access to explore a simple database Design and create a new database Create and use forms Create and use queries

More information

Merging Labels, Letters, and Envelopes Word 2013

Merging Labels, Letters, and Envelopes Word 2013 Merging Labels, Letters, and Envelopes Word 2013 Merging... 1 Types of Merges... 1 The Merging Process... 2 Labels - A Page of the Same... 2 Labels - A Blank Page... 3 Creating Custom Labels... 3 Merged

More information

TABLEAU COURSE CONTENT. Presented By 3S Business Corporation Inc www.3sbc.com Call us at : 281-823-9222 Mail us at : info@3sbc.com

TABLEAU COURSE CONTENT. Presented By 3S Business Corporation Inc www.3sbc.com Call us at : 281-823-9222 Mail us at : info@3sbc.com TABLEAU COURSE CONTENT Presented By 3S Business Corporation Inc www.3sbc.com Call us at : 281-823-9222 Mail us at : info@3sbc.com Introduction and Overview Why Tableau? Why Visualization? Level Setting

More information

Task Force on Technology / EXCEL

Task Force on Technology / EXCEL Task Force on Technology EXCEL Basic terminology Spreadsheet A spreadsheet is an electronic document that stores various types of data. There are vertical columns and horizontal rows. A cell is where the

More information

Microsoft Access 3: Understanding and Creating Queries

Microsoft Access 3: Understanding and Creating Queries Microsoft Access 3: Understanding and Creating Queries In Access Level 2, we learned how to perform basic data retrievals by using Search & Replace functions and Sort & Filter functions. For more complex

More information

Excel 2007 - Using Pivot Tables

Excel 2007 - Using Pivot Tables Overview A PivotTable report is an interactive table that allows you to quickly group and summarise information from a data source. You can rearrange (or pivot) the table to display different perspectives

More information

Creating Charts in Microsoft Excel A supplement to Chapter 5 of Quantitative Approaches in Business Studies

Creating Charts in Microsoft Excel A supplement to Chapter 5 of Quantitative Approaches in Business Studies Creating Charts in Microsoft Excel A supplement to Chapter 5 of Quantitative Approaches in Business Studies Components of a Chart 1 Chart types 2 Data tables 4 The Chart Wizard 5 Column Charts 7 Line charts

More information

ECDL. European Computer Driving Licence. Spreadsheet Software BCS ITQ Level 2. Syllabus Version 5.0

ECDL. European Computer Driving Licence. Spreadsheet Software BCS ITQ Level 2. Syllabus Version 5.0 European Computer Driving Licence Spreadsheet Software BCS ITQ Level 2 Using Microsoft Excel 2010 Syllabus Version 5.0 This training, which has been approved by BCS, The Chartered Institute for IT, includes

More information

Microsoft Excel 2010 Tutorial

Microsoft Excel 2010 Tutorial 1 Microsoft Excel 2010 Tutorial Excel is a spreadsheet program in the Microsoft Office system. You can use Excel to create and format workbooks (a collection of spreadsheets) in order to analyze data and

More information

EXCEL FINANCIAL USES

EXCEL FINANCIAL USES EXCEL FINANCIAL USES Table of Contents Page LESSON 1: FINANCIAL DOCUMENTS...1 Worksheet Design...1 Selecting a Template...2 Adding Data to a Template...3 Modifying Templates...3 Saving a New Workbook as

More information

Microsoft Excel 2010 Part 3: Advanced Excel

Microsoft Excel 2010 Part 3: Advanced Excel CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Excel 2010 Part 3: Advanced Excel Winter 2015, Version 1.0 Table of Contents Introduction...2 Sorting Data...2 Sorting

More information

Creating a Poster Presentation using PowerPoint

Creating a Poster Presentation using PowerPoint Creating a Poster Presentation using PowerPoint Course Description: This course is designed to assist you in creating eye-catching effective posters for presentation of research findings at scientific

More information

Excel -- Creating Charts

Excel -- Creating Charts Excel -- Creating Charts The saying goes, A picture is worth a thousand words, and so true. Professional looking charts give visual enhancement to your statistics, fiscal reports or presentation. Excel

More information

Access 2007. Creating Databases - Fundamentals

Access 2007. Creating Databases - Fundamentals Access 2007 Creating Databases - Fundamentals Contents Database Design Objectives of database design 1 Process of database design 1 Creating a New Database... 3 Tables... 4 Creating a table in design view

More information

EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002

EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002 EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002 Table of Contents Part I Creating a Pivot Table Excel Database......3 What is a Pivot Table...... 3 Creating Pivot Tables

More information

Data exploration with Microsoft Excel: analysing more than one variable

Data exploration with Microsoft Excel: analysing more than one variable Data exploration with Microsoft Excel: analysing more than one variable Contents 1 Introduction... 1 2 Comparing different groups or different variables... 2 3 Exploring the association between categorical

More information

Spotfire v6 New Features. TIBCO Spotfire Delta Training Jumpstart

Spotfire v6 New Features. TIBCO Spotfire Delta Training Jumpstart Spotfire v6 New Features TIBCO Spotfire Delta Training Jumpstart Map charts New map chart Layers control Navigation control Interaction mode control Scale Web map Creating a map chart Layers are added

More information

Microsoft Access 2010 handout

Microsoft Access 2010 handout Microsoft Access 2010 handout Access 2010 is a relational database program you can use to create and manage large quantities of data. You can use Access to manage anything from a home inventory to a giant

More information

New Orleans 2007 Workshop Tips For Using Microsoft Excel to Analyze EMSC Data and Generate Reports Pivot Tables and Other Goodies

New Orleans 2007 Workshop Tips For Using Microsoft Excel to Analyze EMSC Data and Generate Reports Pivot Tables and Other Goodies 1 of 17 New Orleans 2007 Workshop Tips For Using Microsoft Excel to Analyze EMSC Data and Generate Reports Pivot Tables and Other Goodies Introduction In this document, we will describe several more advanced

More information

Getting Started Guide

Getting Started Guide Getting Started Guide Introduction... 3 What is Pastel Partner (BIC)?... 3 System Requirements... 4 Getting Started Guide... 6 Standard Reports Available... 6 Accessing the Pastel Partner (BIC) Reports...

More information

Microsoft Excel 2010 Charts and Graphs

Microsoft Excel 2010 Charts and Graphs Microsoft Excel 2010 Charts and Graphs Email: training@health.ufl.edu Web Page: http://training.health.ufl.edu Microsoft Excel 2010: Charts and Graphs 2.0 hours Topics include data groupings; creating

More information

Abstract. For notes detailing the changes in each release, see the MySQL for Excel Release Notes. For legal information, see the Legal Notices.

Abstract. For notes detailing the changes in each release, see the MySQL for Excel Release Notes. For legal information, see the Legal Notices. MySQL for Excel Abstract This is the MySQL for Excel Reference Manual. It documents MySQL for Excel 1.3 through 1.3.6. Much of the documentation also applies to the previous 1.2 series. For notes detailing

More information

Step One. Step Two. Step Three USING EXPORTED DATA IN MICROSOFT ACCESS (LAST REVISED: 12/10/2013)

Step One. Step Two. Step Three USING EXPORTED DATA IN MICROSOFT ACCESS (LAST REVISED: 12/10/2013) USING EXPORTED DATA IN MICROSOFT ACCESS (LAST REVISED: 12/10/2013) This guide was created to allow agencies to set up the e-data Tech Support project s Microsoft Access template. The steps below have been

More information

MICROSOFT EXCEL 2010 ANALYZE DATA

MICROSOFT EXCEL 2010 ANALYZE DATA MICROSOFT EXCEL 2010 ANALYZE DATA Microsoft Excel 2010 Essential Analyze data Last Edited: 2012-07-09 1 Basic analyze data... 4 Use diagram to audit formulas... 4 Use Error Checking feature... 4 Use Evaluate

More information

Microsoft Excel 2007 Mini Skills Overview of Tables

Microsoft Excel 2007 Mini Skills Overview of Tables To make managing and analyzing a group of related data easier, you can turn a range of cells into a Microsoft Office Excel table (previously known as an Excel list). A table typically contains related

More information

ACADEMIC TECHNOLOGY SUPPORT

ACADEMIC TECHNOLOGY SUPPORT ACADEMIC TECHNOLOGY SUPPORT Microsoft Excel: Tables & Pivot Tables ats@etsu.edu 439-8611 www.etsu.edu/ats Table of Contents: Overview... 1 Objectives... 1 1. What is an Excel Table?... 2 2. Creating Pivot

More information

Tableau Your Data! Wiley. with Tableau Software. the InterWorks Bl Team. Fast and Easy Visual Analysis. Daniel G. Murray and

Tableau Your Data! Wiley. with Tableau Software. the InterWorks Bl Team. Fast and Easy Visual Analysis. Daniel G. Murray and Tableau Your Data! Fast and Easy Visual Analysis with Tableau Software Daniel G. Murray and the InterWorks Bl Team Wiley Contents Foreword xix Introduction xxi Part I Desktop 1 1 Creating Visual Analytics

More information

Excel Project Creating a Stock Portfolio Simulation

Excel Project Creating a Stock Portfolio Simulation Background Vocabulary Excel Project Creating a Stock Portfolio Simulation 1. What is a stock? A stock is a share in the ownership of a corporation, a large business organization. A stock, also, represents

More information

Microsoft Excel 2007 Consolidate Data & Analyze with Pivot Table Windows XP

Microsoft Excel 2007 Consolidate Data & Analyze with Pivot Table Windows XP Microsoft Excel 2007 Consolidate Data & Analyze with Pivot Table Windows XP Consolidate Data in Multiple Worksheets Example data is saved under Consolidation.xlsx workbook under ProductA through ProductD

More information

DATA VISUALIZATION WITH TABLEAU PUBLIC. (Data for this tutorial at www.peteraldhous.com/data)

DATA VISUALIZATION WITH TABLEAU PUBLIC. (Data for this tutorial at www.peteraldhous.com/data) DATA VISUALIZATION WITH TABLEAU PUBLIC (Data for this tutorial at www.peteraldhous.com/data) Tableau Public allows you to create a wide variety of interactive graphs, maps and tables and organize them

More information

BID2WIN Workshop. Advanced Report Writing

BID2WIN Workshop. Advanced Report Writing BID2WIN Workshop Advanced Report Writing Please Note: Please feel free to take this workbook home with you! Electronic copies of all lab documentation are available for download at http://www.bid2win.com/userconf/2011/labs/

More information

Excel 2007 A Beginners Guide

Excel 2007 A Beginners Guide Excel 2007 A Beginners Guide Beginner Introduction The aim of this document is to introduce some basic techniques for using Excel to enter data, perform calculations and produce simple charts based on

More information

Excel Database Management Microsoft Excel 2003

Excel Database Management Microsoft Excel 2003 Excel Database Management Microsoft Reference Guide University Technology Services Computer Training Copyright Notice Copyright 2003 EBook Publishing. All rights reserved. No part of this publication may

More information

Tableau's data visualization software is provided through the Tableau for Teaching program.

Tableau's data visualization software is provided through the Tableau for Teaching program. A BEGINNER S GUIDE TO VISUALIZATION Featuring REU Site Collaborative Data Visualization Applications June 10, 2014 Vetria L. Byrd, PhD Advanced Visualization, Director REU Coordinator Visualization Scientist

More information

WHAT S NEW IN OBIEE 11.1.1.7

WHAT S NEW IN OBIEE 11.1.1.7 Enterprise Data Management OBI Author Training, March 2015 WHAT S NEW IN OBIEE 11.1.1.7 NEW PRESENTATION FEATURES VIEWS 1) Recommended Visualizations Feature When you create a new view, OBIEE looks at

More information

User Services. Intermediate Microsoft Access. Use the new Microsoft Access. Getting Help. Instructors OBJECTIVES. July 2009

User Services. Intermediate Microsoft Access. Use the new Microsoft Access. Getting Help. Instructors OBJECTIVES. July 2009 User Services July 2009 OBJECTIVES Develop Field Properties Import Data from an Excel Spreadsheet & MS Access database Create Relationships Create a Form with a Subform Create Action Queries Create Command

More information

Pastel Evolution BIC. Getting Started Guide

Pastel Evolution BIC. Getting Started Guide Pastel Evolution BIC Getting Started Guide Table of Contents System Requirements... 4 How it Works... 5 Getting Started Guide... 6 Standard Reports Available... 6 Accessing the Pastel Evolution (BIC) Reports...

More information

INTERMEDIATE Excel 2013

INTERMEDIATE Excel 2013 INTERMEDIATE Excel 2013 Information Technology September 1, 2014 1 P a g e Managing Workbooks Excel uses the term workbook for a file. The term worksheet refers to an individual spreadsheet within a workbook.

More information

Excel 2003 A Beginners Guide

Excel 2003 A Beginners Guide Excel 2003 A Beginners Guide Beginner Introduction The aim of this document is to introduce some basic techniques for using Excel to enter data, perform calculations and produce simple charts based on

More information

MAS 500 Intelligence Tips and Tricks Booklet Vol. 1

MAS 500 Intelligence Tips and Tricks Booklet Vol. 1 MAS 500 Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the Sage MAS Intelligence Reports... 3 Copying, Pasting and Renaming Reports... 4 To create a new report from an existing report...

More information

Lab 11: Budgeting with Excel

Lab 11: Budgeting with Excel Lab 11: Budgeting with Excel This lab exercise will have you track credit card bills over a period of three months. You will determine those months in which a budget was met for various categories. You

More information

Excel for Data Cleaning and Management

Excel for Data Cleaning and Management Excel for Data Cleaning and Management Background Information This workshop is designed to teach skills in Excel that will help you manage data from large imports and save them for further use in SPSS

More information

Getting Started Guide SAGE ACCPAC INTELLIGENCE

Getting Started Guide SAGE ACCPAC INTELLIGENCE Getting Started Guide SAGE ACCPAC INTELLIGENCE Table of Contents Introduction... 1 What is Sage Accpac Intelligence?... 1 What are the benefits of using Sage Accpac Intelligence?... 1 System Requirements...

More information

Introduction to Microsoft Excel 2007/2010

Introduction to Microsoft Excel 2007/2010 to Microsoft Excel 2007/2010 Abstract: Microsoft Excel is one of the most powerful and widely used spreadsheet applications available today. Excel's functionality and popularity have made it an essential

More information

Critical Path Method (CPM)

Critical Path Method (CPM) Project Management Templates (CPM) http://spreadsheetml.com/projectmanagement/criticalpathanalysis.shtml Copyright (c) 2009-2010, ConnectCode All Rights Reserved. ConnectCode accepts no responsibility

More information

MS Excel. Handout: Level 2. elearning Department. Copyright 2016 CMS e-learning Department. All Rights Reserved. Page 1 of 11

MS Excel. Handout: Level 2. elearning Department. Copyright 2016 CMS e-learning Department. All Rights Reserved. Page 1 of 11 MS Excel Handout: Level 2 elearning Department 2016 Page 1 of 11 Contents Excel Environment:... 3 To create a new blank workbook:...3 To insert text:...4 Cell addresses:...4 To save the workbook:... 5

More information

Working with Excel in Origin

Working with Excel in Origin Working with Excel in Origin Limitations When Working with Excel in Origin To plot your workbook data in Origin, you must have Excel version 7 (Microsoft Office 95) or later installed on your computer

More information

Formatting Report Output to MS Excel

Formatting Report Output to MS Excel Digital Innovation Users Conference 2013 Formatting Report Output to MS Excel Kansas City, MO October 2-4 Copyright 2013 Digital Innovation, Inc. All Rights Reserved Proprietary Rights Notice Revision

More information

Microsoft Project From the WBS to a Complete Schedule Emanuele Della Valle, Lecturer: Dario Cerizza http://emanueledellavalle.org

Microsoft Project From the WBS to a Complete Schedule Emanuele Della Valle, Lecturer: Dario Cerizza http://emanueledellavalle.org Planning and Managing Software Projects 2010-11 Session 6 Microsoft Project From the WBS to a Complete Schedule Emanuele Della Valle, Lecturer: Dario Cerizza http://emanueledellavalle.org Credits 2 These

More information

Drawing a histogram using Excel

Drawing a histogram using Excel Drawing a histogram using Excel STEP 1: Examine the data to decide how many class intervals you need and what the class boundaries should be. (In an assignment you may be told what class boundaries to

More information

Excel 2013 Sort: Custom Sorts, Sort Levels, Changing Level & Sorting by Colored Cells

Excel 2013 Sort: Custom Sorts, Sort Levels, Changing Level & Sorting by Colored Cells Excel 2013 Sort: Custom Sorts, Sort Levels, Changing Level & Sorting by Colored Cells As you keep adding more content to a worksheet, organizing that information becomes important. You can quickly reorganize

More information

SECTION 2-1: OVERVIEW SECTION 2-2: FREQUENCY DISTRIBUTIONS

SECTION 2-1: OVERVIEW SECTION 2-2: FREQUENCY DISTRIBUTIONS SECTION 2-1: OVERVIEW Chapter 2 Describing, Exploring and Comparing Data 19 In this chapter, we will use the capabilities of Excel to help us look more carefully at sets of data. We can do this by re-organizing

More information

Pivot Tables & Pivot Charts

Pivot Tables & Pivot Charts Pivot Tables & Pivot Charts Pivot tables... 2 Creating pivot table using the wizard...2 The pivot table toolbar...5 Analysing data in a pivot table...5 Pivot Charts... 6 Creating a pivot chart using the

More information

Click to create a query in Design View. and click the Query Design button in the Queries group to create a new table in Design View.

Click to create a query in Design View. and click the Query Design button in the Queries group to create a new table in Design View. Microsoft Office Access 2010 Understanding Queries Queries are questions you ask of your database. They allow you to select certain fields out of a table, or pull together data from various related tables

More information

FirstClass FAQ's An item is missing from my FirstClass desktop

FirstClass FAQ's An item is missing from my FirstClass desktop FirstClass FAQ's An item is missing from my FirstClass desktop Deleted item: If you put a item on your desktop, you can delete it. To determine what kind of item (conference-original, conference-alias,

More information

GUIDE FOR SORTING RX HISTORY REPORTS IN MICROSOFT EXCEL

GUIDE FOR SORTING RX HISTORY REPORTS IN MICROSOFT EXCEL GUIDE FOR SORTING RX HISTORY REPORTS IN MICROSOFT EXCEL 1. Log in to your INSPECT WebCenter Account. 2. Go to the Requests tab on the left, and select New Request. 3. Select Practitioner from the drop-down

More information

Easy Calculations in Excel

Easy Calculations in Excel Easy Calculations in Excel (2007 and newer) Any time you have a list of numbers that require some sort of calculation like percent change from one year to the next, percent of total, average or just a

More information

To create a histogram, you must organize the data in two columns on the worksheet. These columns must contain the following data:

To create a histogram, you must organize the data in two columns on the worksheet. These columns must contain the following data: You can analyze your data and display it in a histogram (a column chart that displays frequency data) by using the Histogram tool of the Analysis ToolPak. This data analysis add-in is available when you

More information

LabVIEW Day 6: Saving Files and Making Sub vis

LabVIEW Day 6: Saving Files and Making Sub vis LabVIEW Day 6: Saving Files and Making Sub vis Vern Lindberg You have written various vis that do computations, make 1D and 2D arrays, and plot graphs. In practice we also want to save that data. We will

More information

Tableau Data Visualization Cookbook

Tableau Data Visualization Cookbook Tableau Data Visualization Cookbook Ashutosh Nandeshwar Chapter No. 4 "Creating Multivariate Charts" In this package, you will find: A Biography of the author of the book A preview chapter from the book,

More information

Using SPSS, Chapter 2: Descriptive Statistics

Using SPSS, Chapter 2: Descriptive Statistics 1 Using SPSS, Chapter 2: Descriptive Statistics Chapters 2.1 & 2.2 Descriptive Statistics 2 Mean, Standard Deviation, Variance, Range, Minimum, Maximum 2 Mean, Median, Mode, Standard Deviation, Variance,

More information

DbSchema Tutorial with Introduction in SQL Databases

DbSchema Tutorial with Introduction in SQL Databases DbSchema Tutorial with Introduction in SQL Databases Contents Connect to the Database and Create First Tables... 2 Create Foreign Keys... 7 Create Indexes... 9 Generate Random Data... 11 Relational Data

More information

"Excel with Excel 2013: Pivoting with Pivot Tables" by Venu Gopalakrishna Remani. October 28, 2014

Excel with Excel 2013: Pivoting with Pivot Tables by Venu Gopalakrishna Remani. October 28, 2014 Teaching Excellence and Innovation 1 Pivot table Pivot table does calculations with criteria Data should be arranged as : Field names in the first rows, records in rows No blank rows or blank columns should

More information

User Services. Microsoft Access 2003 II. Use the new Microsoft

User Services. Microsoft Access 2003 II. Use the new Microsoft User Services July 2007 OBJECTIVES Develop Field Properties Import Data from an Excel Spreadsheet Create Relationships Create a Form with a Subform Create Action Queries Create Command Buttons Create a

More information

Introduction to Pivot Tables in Excel 2003

Introduction to Pivot Tables in Excel 2003 The Company Rocks Introduction to Pivot Tables in Excel 2003 Step-by-step instructions to accompany video lessons Danny Rocks 4/11/2011 Introduction to Pivot Tables in Excel 2003 Pivot Tables are the most

More information

Microsoft Office. Mail Merge in Microsoft Word

Microsoft Office. Mail Merge in Microsoft Word Microsoft Office Mail Merge in Microsoft Word TABLE OF CONTENTS Microsoft Office... 1 Mail Merge in Microsoft Word... 1 CREATE THE SMS DATAFILE FOR EXPORT... 3 Add A Label Row To The Excel File... 3 Backup

More information

Using Excel s PivotTable to Analyze Learning Assessment Data

Using Excel s PivotTable to Analyze Learning Assessment Data Using Excel s PivotTable to Analyze Learning Assessment Data Assessment Office University of Hawaiʻiat Mānoa Feb 13, 2013 1 Mission: Improve student learning through program assessment 2 1 Learning Outcomes

More information

CHAPTER 6: ANALYZE MICROSOFT DYNAMICS NAV 5.0 DATA IN MICROSOFT EXCEL

CHAPTER 6: ANALYZE MICROSOFT DYNAMICS NAV 5.0 DATA IN MICROSOFT EXCEL Chapter 6: Analyze Microsoft Dynamics NAV 5.0 Data in Microsoft Excel CHAPTER 6: ANALYZE MICROSOFT DYNAMICS NAV 5.0 DATA IN MICROSOFT EXCEL Objectives The objectives are: Explain the process of exporting

More information

To launch the Microsoft Excel program, locate the Microsoft Excel icon, and double click.

To launch the Microsoft Excel program, locate the Microsoft Excel icon, and double click. EDIT202 Spreadsheet Lab Assignment Guidelines Getting Started 1. For this lab you will modify a sample spreadsheet file named Starter- Spreadsheet.xls which is available for download from the Spreadsheet

More information

Preview DESIGNING DATABASES WITH VISIO PROFESSIONAL: A TUTORIAL

Preview DESIGNING DATABASES WITH VISIO PROFESSIONAL: A TUTORIAL DESIGNING DATABASES WITH VISIO PROFESSIONAL: A TUTORIAL A Microsoft Visio Professional is a powerful database design and modeling tool. The Visio software has so many features that it is impossible to

More information

Excel Math Project for 8th Grade Identifying Patterns

Excel Math Project for 8th Grade Identifying Patterns There are several terms that we will use to describe your spreadsheet: Workbook, worksheet, row, column, cell, cursor, name box, formula bar. Today you are going to create a spreadsheet to investigate

More information

A Beginning Guide to the Excel 2007 Pivot Table

A Beginning Guide to the Excel 2007 Pivot Table A Beginning Guide to the Excel 2007 Pivot Table Paula Ecklund Summer 2008 Page 1 Contents I. What is a Pivot Table?...1 II. Basic Excel 2007 Pivot Table Creation Source data requirements...2 Pivot Table

More information

Data Tool Platform SQL Development Tools

Data Tool Platform SQL Development Tools Data Tool Platform SQL Development Tools ekapner Contents Setting SQL Development Preferences...5 Execution Plan View Options Preferences...5 General Preferences...5 Label Decorations Preferences...6

More information

REP200 Using Query Manager to Create Ad Hoc Queries

REP200 Using Query Manager to Create Ad Hoc Queries Using Query Manager to Create Ad Hoc Queries June 2013 Table of Contents USING QUERY MANAGER TO CREATE AD HOC QUERIES... 1 COURSE AUDIENCES AND PREREQUISITES...ERROR! BOOKMARK NOT DEFINED. LESSON 1: BASIC

More information

Excel 2007 Basic knowledge

Excel 2007 Basic knowledge Ribbon menu The Ribbon menu system with tabs for various Excel commands. This Ribbon system replaces the traditional menus used with Excel 2003. Above the Ribbon in the upper-left corner is the Microsoft

More information

Access II 2007 Workshop

Access II 2007 Workshop Access II 2007 Workshop Query & Report I. Review Tables/Forms Ways to create tables: tables, templates & design Edit tables: new fields & table properties Import option Link tables: Relationship Forms

More information

Basic Excel Handbook

Basic Excel Handbook 2 5 2 7 1 1 0 4 3 9 8 1 Basic Excel Handbook Version 3.6 May 6, 2008 Contents Contents... 1 Part I: Background Information...3 About This Handbook... 4 Excel Terminology... 5 Excel Terminology (cont.)...

More information