Exchange (Copy, Import, Export) Data Between Excel and Access

Size: px
Start display at page:

Download "Exchange (Copy, Import, Export) Data Between Excel and Access"

Transcription

1 Excel usage is widespread and Excel is often the go-to Office application for data entry, analysis, and manipulation. Microsoft Access provides relational database capability in a compact desktop environment. Fewer people use Access, even though it has many features for handling data and the interface is user-friendly. Access has all the functionality of a relational database application including the ability to create tables, specify and restrict data types for each table, create simple and advanced queries, SQL manipulation and form creation for user input. Excel, in addition to being the more familiar interface, has advanced charting capabilities and extended Pivot Table functionality and options. Integration of Excel and Access, allows one to take advantage of the ease of data entry and advanced charting capabilities of Excel, combined with the relational database interface and environment of Access. Here are a few handy tips for exchanging data between the two Office Applications: Table of Contents 1 1) Understanding the logic involved in Access table structure and creation 2 2) Removal of duplicates in Excel, for ease of subsequent table design or integration of the source data into Access 3 3) Using the TRIM Function() to remove unnecessary spaces and using the underscore to maintain consistency between field names in Access and column headings in Excel 4 4) Importing data into Access from Excel dealing with the two main scenarios 5 5) Using Table Analyzer to normalize imported data and split the data into separate tables in Access 6 6) Importing data from Access into Excel and using VLOOKUP to link the data and populate columns 7 7) Using data already set up in a relational Access database, for Power Pivot manipulation 8 Download Files 9 Conclusion 10 Some useful links 1) Understanding the logic involved in Access table structure and creation Access is a relational database as mentioned. This means the tables in the Access database are all related to one another. Each record in an Access database should be able to be uniquely identified. This is achieved through the use of a primary key. This primary key usually consists of one field, however, in some cases, it can be a combination of more than one field. This primary key is mandatory and Access automatically adds an ID column, which serves as the primary key for the table. In Excel a primary key is not a mandatory requirement when creating tables, so users often leave it out. All rights reserved to ExcelDemy.com. 1

2 This situation is shown below, the first image shows the Access table in both Datasheet and Design View and the primary key that is automatically added. The second image shows the Excel table and the way, the data would most likely be entered in Excel. All rights reserved to ExcelDemy.com. 2

3 The data entry in the Excel table is not incorrect. However, if you are planning to use Excel as the data entry software and then import the tables into Access later on (this is analogous to using Excel as a user-friendly form for Access in a way), then it s best, from the onset to add a primary key to the Excel table, when setting up the spreadsheet in Excel. This is to ensure that users get familiarized and orientated with the primary key concept and to eliminate data redundancy and duplication early on, as much as is possible. This is simple enough to do in Excel when creating tables in Excel. If you have a relatively small table, that does not already contain a primary key column, and there is no duplication or redundancy in the Excel table you can easily add this column. Simply, right-click a cell in your first column in the table, choose Insert, Table Columns to the Left. Then rename this column and call it ID. To populate this column, select the first cell of the column and type in 1, then go to the second cell of the column and type in 2, and then highlight the above two All rights reserved to ExcelDemy.com. 3

4 cells and drag down using Autofill to populate the rest of the column. Also, a handy tip to remember is that the field names in Access tables are equivalent to the column headings in Excel tables. You can also copy the data in the table from Access and paste in a new sheet in Excel. This is advisable for an Access table with a small amount of data. Select all the rows in Access that you want to copy, go to Home tab, in the Clipboard group, choose Copy or press CTRLC on your keyboard. Then on a new sheet in the Excel Workbook, press CTRL-V on your keyboard to paste the Access table in the Excel sheet. The Access table is pasted as a range with headings and can be converted to an Excel table, by selecting a cell in the range and pressing CTRL-T on your keyboard. Make sure the checkbox, my table has headers is ticked and then press Ok, in order to convert the range to an Excel table. All rights reserved to ExcelDemy.com. 4

5 Leading on from the above-mentioned points. In Access, the information is divided into major entities or subjects. For example, an Access database designed for a small store would more than likely contain separate tables called Products, Orders, Customers and Employees (with the relationships designated). In Excel, it is not unusual to see the All rights reserved to ExcelDemy.com. 5

6 information, which would be stored in separate tables in Access, combined in one Excel table, as shown below. Now as mentioned, the way the data is entered into the Excel table is not incorrect. However, if Excel and Access are going to be integrated, in terms of Excel is the data entry software and Access provides the querying and database functionality. It is best to divide the information in Excel that s stored in one big table into four smaller tables, and place each table on its own sheet as shown below. Also, it s advisable to match the names of the fields in the table in Access, to the headings of the columns in the table in Excel, in order to avoid confusion and maintain consistency. All rights reserved to ExcelDemy.com. 6

7 2) Removal of duplicates in Excel, for ease of subsequent table design or integration of the source data into Access It is often difficult to see unique values, at a glance, in Excel tables that contain many rows of data. Let s say one wanted to see the number of unique products for an Excel table, that All rights reserved to ExcelDemy.com. 7

8 contained 100 rows of data, in order to design an efficient table in Access using the information gleaned from the Excel workbook. The Excel workbook in this example is based on some data from a hypothetical online retailer. The Excel table contains the date the product was sold, the name of the product, and the quantity sold as shown below. Firstly, make a copy of the spreadsheet containing the table in the workbook, in order to keep the original data intact and then work on the copy. With a cell in the Excel table selected, in order to activate the context-sensitive Table Tools options, select the Design tab, and in the Tools group, choose the Remove Duplicates option as shown below. All rights reserved to ExcelDemy.com. 8

9 The Remove Duplicates dialog box should come up and uncheck Date_Of_Sale and Quantity and click Ok. A message box should pop up stating how many duplicate values were removed. Click Ok. All rights reserved to ExcelDemy.com. 9

10 All rights reserved to ExcelDemy.com. 10

11 The resultant table in Excel can be used to help glean information for the Access table for the online retailer s proposed Access database. All rights reserved to ExcelDemy.com. 11

12 All rights reserved to ExcelDemy.com. 12

13 3) Using the TRIM Function() to remove unnecessary spaces and using the underscore to maintain consistency between field names in Access and column headings in Excel Access field names cannot begin with leading spaces, so one can use the TRIM function() on the names of the column headings of tables in Excel, in order to remove spaces. Also, let s say eventually one needs to import data to SQL Server or another database such as Oracle. So, the flow of the integrated solution will be data entry in Excel, then exporting this data to Access, and then importing the Access tables into enterprise-level databases such as SQL Server or Oracle. Other databases do not read spaces between names of fields very well. So instead of calling the name of the heading column in the Excel table, Name of Product call it Name_of_Product, using underscores for ease of integration into other databases further down the line. SQL also handles this naming style of tables much better, than names with spaces. One can use the caption property in Access, so if your field name in your table is Name_of_Product, enter the caption or label as Name of Product in design view. So in datasheet view or on forms Name of Product is used instead, while the underlying field name has the underscores. This is mainly for aesthetic purposes for front-end viewers of the database in Access. All rights reserved to ExcelDemy.com. 13

14 All rights reserved to ExcelDemy.com. 14

15 4) Importing data into Access from Excel dealing with the two main scenarios In scenario one, one has a totally blank Access database, and one wants to import the data from Excel (the tables in Excel are setup with IDs and redundancy and duplication are reduced as much as is possible) and use Excel as the data entry programme or form. With the Access database open, go to the External Data tab, in the Import & Link group, choose Excel as shown. The Get External Data Excel Spreadsheet Wizard should pop up. Navigate to the Excel Workbook that contains the data. Choose the Link to the data source by creating a linked table option. This allows data entry in Excel since we want users to enter the data in Excel. Any changes made to this data in Excel is reflected in Access, but nothing can be edited in Access. Its almost ready-only in Access, in terms of data entry in datasheet view. Click Ok. All rights reserved to ExcelDemy.com. 15

16 If the table is set up correctly in Excel, Access will automatically detect and check that the First Row Contains Column Headings as shown below. All rights reserved to ExcelDemy.com. 16

17 Clicking Next leads one to the final step in the process, which asks one to enter a linked table name and then click Finish. All rights reserved to ExcelDemy.com. 17

18 A message should pop up to say the table has been linked. All rights reserved to ExcelDemy.com. 18

19 All rights reserved to ExcelDemy.com. 19

20 All rights reserved to ExcelDemy.com. 20

21 This exposes the Excel data to the additional SQL functionality, and expression builders for complex query creation, available in the Access environment. The results of the complex queries could later be used in Excel dashboards. It is advisable, but not mandatory to keep the Excel data entry tables and the Access database with the linked tables in the same folder or directory just for organizational purposes. In scenario two, one has a blank or populated Access database and one wants to import All rights reserved to ExcelDemy.com. 21

22 Excel tables, but not have them linked. One wants to edit them in Access. In that way whatever changes are made later on in the Excel sheet are not reflected in Access and one then has the data entirely in Access for editing and querying. This is usually the option chosen when one needs to strictly maintain control, of the types of data entered in the tables. Again, with your Access database open, go to the External Data tab, in the Import & Link group, choose Excel as shown. In this case, when the wizard pops up, choose to Import the source data into a new table in the current database, in order to create a copy of the table in Access that is now unlinked to the original Excel table. Click Ok. All rights reserved to ExcelDemy.com. 22

23 Click Next on the next screen. All rights reserved to ExcelDemy.com. 23

24 One then gets to specify the information about the fields one is importing, as shown below. The wizard also allows one to choose which fields to skip as well. Since often Excel tables may contain data that actually needs to be in other tables in Access, one can then avoid importing these columns into the current table. All rights reserved to ExcelDemy.com. 24

25 One can then let Access add a primary key, or choose one s own primary key. In this case, since the table already had a designated ID column in Excel, the second option was chosen as shown. All rights reserved to ExcelDemy.com. 25

26 Click Next. Then choose a name for the table in Access and click Finish. All rights reserved to ExcelDemy.com. 26

27 You ll be asked whether you want to save the import steps, for now just click close. The table is now in Access for further editing, entry, and manipulation and is unlinked to the Excel workbook. All rights reserved to ExcelDemy.com. 27

28 5) Using Table Analyzer to normalize imported data and split the data into separate tables in Access Later versions of Access, have the Table Analyzer tool, which helps users separate one table into many tables. This is especially useful if one did import the data from a big Excel table and one is struggling to separate the tables. One can launch this wizard as part of the import process and check the box, I would like a wizard to analyze my table after importing the data as shown below. All rights reserved to ExcelDemy.com. 28

29 Or one can access it, if the tables are already imported as standalone Access tables, by going to Database Tools, in the Analyze group, choose Analyze Table. The Table Analyzer wizard should be launched, which will guide you through the steps of creating separate tables. All rights reserved to ExcelDemy.com. 29

30 Table Analyzer, however, does not always guess right, so use it with caution. 6) Importing data from Access into Excel and using VLOOKUP to link the data and populate columns One can import Access tables into Excel worksheets. With an Excel workbook opened, go to the Data tab, in the Get External Data group, choose From Access as shown below. Navigate to the Access database containing the tables, you want to import into your Excel All rights reserved to ExcelDemy.com. 30

31 spreadsheet. Select the table one wants to import, in this case, the ProductT. All rights reserved to ExcelDemy.com. 31

32 Click Ok. Choose to Import the data as a Table, on the existing worksheet, choose cell A1, and then Click Ok. All rights reserved to ExcelDemy.com. 32

33 The table is imported as an Excel table. The same was done for the three other tables in the database, namely Orders, Employees, and Customers tables. One now has an Orders table which looks like the one below. This table with numbers in Customer_ID, Product_ID and Employee_ID can be counterintuitive and confusing for Excel users not used to the relational database theory and tables. Thus one could add three helper columns to the table called Actual_Customer, Actual_Product and Actual_Employee as shown below. In Cell F2, the following formula was used: All rights reserved to ExcelDemy.com. 33

34 E) Where, refers to cell C2, which contains the lookup value, Table_TablesToBeImportedIntoExcel.accdb5 refers to the imported Customers table on the Customers sheet, (Excel gives this table a default name), highlight the data, but not the column headings, the same way one would for a normal VLOOKUP, the customer name is in column 2, and the type of lookup is an exact match. Double click and send the formula down to populate the Actual_Customer column. Do the same thing to populate the Actual_Product and Actual_Employee columns. So one can quickly repopulate Excel tables with actual text values as needed, using the VLOOKUP functionality in order to orientate the Excel users. 7) Using data already set up in a relational Access database, for Power Pivot manipulation Power Pivot is a Business Intelligence tool available with Excel 2013 and later versions of Excel. It also requires data to be input in a relational manner. So, what you can do when you are importing Access tables into Excel (already normalized and designed using relational data logic), is to add the imported tables to the data model. In a blank workbook, go to Data, get External data and choose from Access as for the case above. However, this time when asked to select a table, check the Enable selection of multiple tables option in the Select Table dialog box and select all the tables as shown below: All rights reserved to ExcelDemy.com. 34

35 Click Ok. Make sure the PivotTable Report option is selected, the Add this data to the Data Model should be checked because we imported multiple tables. If you only import one table at a time, you will need to check this option yourself. If you click on the drop-down arrow next to Properties, you should see that the relationships between the tables will also be imported. Click Ok to create the Pivot TableReport, with the tables already added to the Data Model. The relationships should be visible in the PowerPivot for Excel Window, Diagram view. Thus the data is ready for further manipulation using Power Pivot functionality. All rights reserved to ExcelDemy.com. 35

36 All rights reserved to ExcelDemy.com. 36

37 Download Files Exchange-Data-Between-Access-and-Excel Conclusion Excel and Access integration allows one to take advantage of the combination of features in Excel and Access. The key to integrating Excel and Access successfully is understanding a little bit about relational database design basics. Understanding a little bit of relational design and table structure will also set you in good stead with respect to taking advantage of Power Pivot and related Business Intelligence tools in the Excel environment. Please feel free to comment and tell us if you integrate Excel and Access, whether or not you use Power Pivot and any other tips for integrating Excel and Access, that you may have. Some useful links Introduction to Access tables Learn about database design basics Normalizing imported data in Access, using Table Analyzer Import Data into Excel and Create a Data Model Start the Power Pivot in Microsoft Excel add in Learn more about Power Pivot Learn about the VLOOKUP Function in Excel Background vector created by Kotkoa Freepik.com 29 SHARES FacebookTwitter Taryn N Taryn is a Microsoft Certified Professional, who has used Office Applications such as Excel and Access extensively, in her interdisciplinary academic career and work experience. She has a background in biochemistry, Geographical Information Systems (GIS) and biofuels. She enjoys showcasing the functionality of Excel in various disciplines. All rights reserved to ExcelDemy.com. 37

38 She has over ten years of experience using Excel and Access to create advanced integrated solutions. All rights reserved to ExcelDemy.com. 38

Read More: How to Make Excel Graphs Look Professional & Cool [10 Awesome Tips]!

Read More: How to Make Excel Graphs Look Professional & Cool [10 Awesome Tips]! How to Modify Color, Font, & Effects & Create Custom Excel Excel has themes, which have different default colors, auto shape effects, SmartArt effects, and fonts. When utilizing themes one can quickly

More information

So let s get started with a simple example to illustrate the difference between the worksheet level protection and workbook level protection.

So let s get started with a simple example to illustrate the difference between the worksheet level protection and workbook level protection. It is often necessary to protect either the sensitive information in one s actual worksheet or the workbook structure, from being edited. Excel provides different options for protecting and securing one

More information

Changing Case using Worksheet Functions and Excel VBA

Changing Case using Worksheet Functions and Excel VBA Excel provides the text worksheet functions, namely the Upper Function, the Lower Function and the Proper Function, which can change the case of a specified input text string. This text string could be

More information

Read More: Index Function Excel [Examples, Make Dynamic Range, INDEX MATCH]

Read More: Index Function Excel [Examples, Make Dynamic Range, INDEX MATCH] You can utilize the built-in Excel Worksheet functions such as the VLOOKUP Function, the CHOOSE Function and the PMT Function in your VBA code and applications as well. In fact, most of the Excel worksheet

More information

How to Create a For Next Loop in Excel VBA!

How to Create a For Next Loop in Excel VBA! Often when writing VBA code, one may need to repeat the same action or series of actions more than a couple of times. One could, in this case, write each action over and over in one s code or alternatively

More information

Pivot Table Project. Objectives. By the end of this lesson, you will be able to:

Pivot Table Project. Objectives. By the end of this lesson, you will be able to: Pivot Table Project Objectives By the end of this lesson, you will be able to: Set up a Worksheet Enter Labels and Values Use Sum and IF functions Format and align cells Change column width Use AutoFill

More information

Read More: How to Create Combination Charts with a Secondary Axis in Excel

Read More: How to Create Combination Charts with a Secondary Axis in Excel A pie chart is used to showcase parts of a whole or proportions of a whole. Charts are visual representations of data that can summarize large data sets and are useful for engaging one s audience. As always,

More information

How to Use the Select Case Structure in Excel VBA

How to Use the Select Case Structure in Excel VBA One can implement conditional logic in VBA using an IF statement, multiple IF-Elseif statements or one can use the Select Case statement in order to implement conditional logic. In the case where one has

More information

How to Use Do While Loop in Excel VBA

How to Use Do While Loop in Excel VBA We have already covered an introduction to looping and the simplest type of loops, namely the For Next Loop and the For Each Next Loop, in previous tutorials. We discovered that the For Next Loop and the

More information

Getting Started Guide. Sage MAS Intelligence 500

Getting Started Guide. Sage MAS Intelligence 500 Getting Started Guide Sage MAS Intelligence 500 Table of Contents Getting Started Guide... 1 Login Properties... 1 Standard Reports Available... 2 Financial Report... 2 Financial Trend Analysis... 3 Dashboard

More information

Sage 50 U.S. Edition Intelligence Reporting Getting Started Guide

Sage 50 U.S. Edition Intelligence Reporting Getting Started Guide Sage Intelligence Reporting Sage 50 U.S. Edition Intelligence Reporting Getting Started Guide Table of Contents Introduction... 2 System requirements... 3 How it works... 4 Getting started guide... 5 Running

More information

Excel Shortcuts Increasing YOUR Productivity

Excel Shortcuts Increasing YOUR Productivity Excel Shortcuts Increasing YOUR Productivity CompuHELP Division of Tommy Harrington Enterprises, Inc. tommy@tommyharrington.com https://www.facebook.com/tommyharringtonextremeexcel Excel Shortcuts Increasing

More information

Microsoft Excel. for Finance Majors. Microsoft Excel for Finance Majors

Microsoft Excel. for Finance Majors. Microsoft Excel for Finance Majors Microsoft Excel for Finance Majors 2007 Version: 12/21/2017 Contents Introduction... 3 Working with Tables... 3 Exercise... 10 Pivot Tables... 12 Exercise:... 17 Conditional Formatting... 18 Exercise:...

More information

Getting Started Guide

Getting Started Guide Getting Started Guide Sage MAS Intelligence 90/200 Table of Contents Getting Started Guide... 1 Login Properties... 1 Standard Reports Available... 2 Financial Report... 2 Financial Trend Analysis... 3

More information

Do Until Loop in Excel VBA with Examples

Do Until Loop in Excel VBA with Examples The Do Until Loop Structure is utilized, when one has a set of statements or actions to be repeated and repetition occurs until the condition evaluates to true, in other words, while the condition is false

More information

MAX vs MAXA vs LARGE and MIN vs MINA vs SMALL Functions in Excel

MAX vs MAXA vs LARGE and MIN vs MINA vs SMALL Functions in Excel provides functions to calculate the largest or maximum value in a range and also functions to calculate the smallest or minimum value in a range. The first function we are going to look at is the MAX Function.

More information

TABLE OF CONTENTS PAGE

TABLE OF CONTENTS PAGE Alchemex for SAP Business One Getting Started Guide Sept 2010 TABLE OF CONTENTS PAGE Getting Started Guide Introduction... 1 What is Alchemex for SAP Business One?... 1 System Requirements... 2 Recommended

More information

Sage 500 ERP Business Intelligence

Sage 500 ERP Business Intelligence Sage 500 ERP Business Intelligence Getting Started Guide Sage 500 Intelligence (7.4) Getting Started Guide The software described in this document is protected by copyright, And may not be copied on any

More information

Read More: How to Make a Pie Chart in Excel [Video Tutorial]

Read More: How to Make a Pie Chart in Excel [Video Tutorial] Most of us are familiar with standard Excel chart types such as a pie chart, a column chart, and a line chart, as well as the types of data they are used to showcase visually. Excel, however, offers a

More information

TABLE OF CONTENTS. Getting Started Guide

TABLE OF CONTENTS. Getting Started Guide Alchemex7 Getting Started Guide January 2011 TABLE OF CONTENTS Getting Started Guide Introduction... 3 What are the benefits of using Alchemex?... 3 System Requirements... 4 Database Connectivity Supported...

More information

TABLE OF CONTENTS PAGE

TABLE OF CONTENTS PAGE Alchemex 7 for Sage 50 Getting Started Guide Oct 2010 1 TABLE OF CONTENTS PAGE Getting Started Guide Introduction... 5 What is Alchemex 7 for Sage 50?... 5 System Requirements... 6 Recommended System Requirements...

More information

Excel Tables and Pivot Tables

Excel Tables and Pivot Tables A) Why use a table in the first place a. Easy to filter and sort if you only sort or filter by one item b. Automatically fills formulas down c. Can easily add a totals row d. Easy formatting with preformatted

More information

Rev. C 11/09/2010 Downers Grove Public Library Page 1 of 41

Rev. C 11/09/2010 Downers Grove Public Library Page 1 of 41 Table of Contents Objectives... 3 Introduction... 3 Excel Ribbon Components... 3 Office Button... 4 Quick Access Toolbar... 5 Excel Worksheet Components... 8 Navigating Through a Worksheet... 8 Making

More information

Microsoft Excel 2010 Training. Excel 2010 Basics

Microsoft Excel 2010 Training. Excel 2010 Basics Microsoft Excel 2010 Training Excel 2010 Basics Overview Excel is a spreadsheet, a grid made from columns and rows. It is a software program that can make number manipulation easy and somewhat painless.

More information

2. create the workbook file

2. create the workbook file 2. create the workbook file Excel documents are called workbook files. A workbook can include multiple sheets of information. Excel supports two kinds of sheets for working with data: Worksheets, which

More information

Microsoft Access 2010

Microsoft Access 2010 www.jwalkonline.org/main michael@jwalkonline.org @MichaelJWalk Microsoft Access 2010 Part 3 Michael J. Walk It's about control: use advanced features of Access to control data entry, automate processes,

More information

My Top 5 Formulas OutofhoursAdmin

My Top 5 Formulas OutofhoursAdmin CONTENTS INTRODUCTION... 2 MS OFFICE... 3 Which Version of Microsoft Office Do I Have?... 4 How To Customise Your Recent Files List... 5 How to recover an unsaved file in MS Office 2010... 7 TOP 5 FORMULAS...

More information

University of North Dakota PeopleSoft Finance Tip Sheets. Utilizing the Query Download Feature

University of North Dakota PeopleSoft Finance Tip Sheets. Utilizing the Query Download Feature There is a custom feature available in Query Viewer that allows files to be created from queries and copied to a user s PC. This feature doesn t have the same size limitations as running a query to HTML

More information

Microsoft Excel 2016 LEVEL 3

Microsoft Excel 2016 LEVEL 3 TECH TUTOR ONE-ON-ONE COMPUTER HELP COMPUTER CLASSES Microsoft Excel 2016 LEVEL 3 kcls.org/techtutor Microsoft Excel 2016 Level 3 Manual Rev 11/2017 instruction@kcls.org Microsoft Excel 2016 Level 3 Welcome

More information

Microsoft Access 2013

Microsoft Access 2013 Microsoft Access 2013 Chapter 1 Databases and Database Objects: An Introduction Objectives Describe the features of the Access window Create a database Create tables in Datasheet and Design views Add records

More information

SPREADSHEET (Excel 2007)

SPREADSHEET (Excel 2007) SPREADSHEET (Excel 2007) 1 U N I T 0 4 BY I F T I K H A R H U S S A I N B A B U R Spreadsheet Microsoft Office Excel 2007 (or Excel) is a computer program used to enter, analyze, and present quantitative

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

Advanced Excel Charts : Tables : Pivots

Advanced Excel Charts : Tables : Pivots Advanced Excel Charts : Tables : Pivots Protecting Your Tables/Cells Protecting your cells/tables is a good idea if multiple people have access to your computer or if you want others to be able to look

More information

Looking good! Slicing and dicing to visualize data in Excel Dashboards Michael Winecoff UNC Charlotte J. Murrey Atkins Library

Looking good! Slicing and dicing to visualize data in Excel Dashboards Michael Winecoff UNC Charlotte J. Murrey Atkins Library Looking good! Slicing and dicing to visualize data in Excel Dashboards Michael Winecoff UNC Charlotte J. Murrey Atkins Library http://goo.gl/asn5xt Objective To take spreadsheet data and present it visually

More information

Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts. Microsoft Excel 2013 Enhanced

Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts. Microsoft Excel 2013 Enhanced Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts Microsoft Excel 2013 Enhanced Objectives Explore a structured range of data Freeze rows and columns Plan and create an Excel table Rename

More information

Pivot Tables, Lookup Tables and Scenarios

Pivot Tables, Lookup Tables and Scenarios Introduction Format and manipulate data using pivot tables. Using a grading sheet as and example you will be shown how to set up and use lookup tables and scenarios. Contents Introduction Contents Pivot

More information

Patricia Andrada Quick Guide Excel 2010 Data Management-July 2011 Page 1

Patricia Andrada Quick Guide Excel 2010 Data Management-July 2011 Page 1 Patricia Andrada Quick Guide Excel 2010 Data Management-July 2011 Page 1 Excel 2010 Data Management AutoFill and Custom Lists AutoFill 1. Select the range that contains the initial value(s) of the series

More information

Read More: Keyboard Shortcuts for Moving around Excel Spreadsheets

Read More: Keyboard Shortcuts for Moving around Excel Spreadsheets You will do all your works in a workbook file. You can add as many worksheets as you need in a workbook file. Each worksheet appears in its own window. By default, Excel workbooks use a.xlsx file extension.

More information

Excel Tables & PivotTables

Excel Tables & PivotTables Excel Tables & PivotTables A PivotTable is a tool that is used to summarize and reorganize data from an Excel spreadsheet. PivotTables are very useful where there is a lot of data that to analyze. PivotTables

More information

Market Insight Excelsior 2 Module Training Manual v2.0

Market Insight Excelsior 2 Module Training Manual v2.0 Market Insight Excelsior 2 Module Training Manual v2.0 Excelsior 2 Module Manual Version: 2.0 Software Release: Data Set: 2016 Q4 Training (US) Excel Version: Office 365 D&B Market Insight is powered by

More information

Lab 7 Macros, Modules, Data Access Pages and Internet Summary Macros: How to Create and Run Modules vs. Macros 1. Jumping to Internet

Lab 7 Macros, Modules, Data Access Pages and Internet Summary Macros: How to Create and Run Modules vs. Macros 1. Jumping to Internet Lab 7 Macros, Modules, Data Access Pages and Internet Summary Macros: How to Create and Run Modules vs. Macros 1. Jumping to Internet 1. Macros 1.1 What is a macro? A macro is a set of one or more actions

More information

Excel 2007 New Features Table of Contents

Excel 2007 New Features Table of Contents Table of Contents Excel 2007 New Interface... 1 Quick Access Toolbar... 1 Minimizing the Ribbon... 1 The Office Button... 2 Format as Table Filters and Sorting... 2 Table Tools... 4 Filtering Data... 4

More information

Pivot Tables in Excel Contents. Updated 5/19/2016

Pivot Tables in Excel Contents. Updated 5/19/2016 Pivot Tables in Excel 2010 Updated 5/19/2016 Contents Setup a Pivot Table in Excel 2010... 2 General Field List Features... 4 Summing and Counting Together... 6 Grouping Date Data... 7 Grouping Non-Date

More information

Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex

Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex Basic Topics: Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex Review ribbon terminology such as tabs, groups and commands Navigate a worksheet, workbook, and multiple workbooks Prepare

More information

MS Excel Advanced Level

MS Excel Advanced Level MS Excel Advanced Level Trainer : Etech Global Solution Contents Conditional Formatting... 1 Remove Duplicates... 4 Sorting... 5 Filtering... 6 Charts Column... 7 Charts Line... 10 Charts Bar... 10 Charts

More information

Office 2016 Excel Basics 21 Video/Class Project #33 Excel Basics 21: Relationships Rather than VLOOKUP for PivotTable Reports (Excel 2016 Data Model)

Office 2016 Excel Basics 21 Video/Class Project #33 Excel Basics 21: Relationships Rather than VLOOKUP for PivotTable Reports (Excel 2016 Data Model) Office 2016 Excel Basics 21 Video/Class Project #33 Excel Basics 21: Relationships Rather than VLOOKUP for PivotTable Reports (Excel 2016 Data Model) Goal in video # 21: Learn about how to use the Relationships

More information

Contents. Group 2 Excel Handouts 2010

Contents. Group 2 Excel Handouts 2010 Contents Styles... 2 Conditional Formatting... 2 Create a New Rule... 4 Format as Table... 5 Create your own New Table Style... 8 Cell Styles... 9 New Cell Style... 10 Merge Styles... 10 Sparklines...

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

Intermediate Microsoft Excel 2010

Intermediate Microsoft Excel 2010 P a g e 1 Intermediate Microsoft Excel 2010 ABOUT THIS CLASS This class is designed to continue where the Microsoft Excel 2010 Basics class left off. Specifically, we will cover additional ways to organize

More information

1. Right-click the worksheet tab you want to rename. The worksheet menu appears. 2. Select Rename.

1. Right-click the worksheet tab you want to rename. The worksheet menu appears. 2. Select Rename. Excel 2010 Worksheet Basics Introduction Page 1 Every Excel workbook contains at least one or more worksheets. If you are working with a large amount of related data, you can use worksheets to help organize

More information

Create a PivotTable. If you prefer to design the PivotTable yourself, you can create a manual PivotTable.

Create a PivotTable. If you prefer to design the PivotTable yourself, you can create a manual PivotTable. Create a PivotTable Excel provides two ways to create a PivotTable report. When you use an automatic PivotTable, Excel evaluates both the structure and kind of data in your range and creates the PivotTable

More information

Creating Automated Dashboard Excel 2013 Contents

Creating Automated Dashboard Excel 2013 Contents Creating Automated Dashboard Excel 2013 Contents Summarize Data Using Pivot Table... 2 Constructing Report Summary... 2 Create a PivotTable from worksheet data... 2 Add fields to a PivotTable... 2 Grouping

More information

Chapter at a glance. Analyze. Filter. Format. Create. Analyze data dynamically by using PivotTables, page 288

Chapter at a glance. Analyze. Filter. Format. Create. Analyze data dynamically by using PivotTables, page 288 Chapter at a glance Analyze Analyze data dynamically by using PivotTables, page 288 Filter Filter, show, and hide PivotTable data, page 298 Format Format PivotTables, page 313 Create Create dynamic charts

More information

Microsoft Access 2010

Microsoft Access 2010 Microsoft Access 2010 Chapter 1 Databases and Database Objects: An Introduction Objectives Design a database to satisfy a collection of requirements Describe the features of the Access window Create a

More information

Chapter 7 Notes Chapter 7 Level 1

Chapter 7 Notes Chapter 7 Level 1 Chapter 7 Notes Chapter 7 Level 1 Page 426 Open the Alaska Retailers file from your Chapter 7 data files in Moodle and save it on your computer, either in your files or on your desk top. Just remember

More information

Excel 101. DJ Wetzel Director of Financial Aid Greenville Technical College

Excel 101. DJ Wetzel Director of Financial Aid Greenville Technical College Excel 101 DJ Wetzel Director of Financial Aid Greenville Technical College Introduction Spreadsheets are made up of : Columns identified with alphabetic headings Rows - identified with numeric headings.

More information

Identifying Updated Metadata and Images from a Content Provider

Identifying Updated Metadata and Images from a Content Provider University of Iowa Libraries Staff Publications 4-8-2010 Identifying Updated Metadata and Images from a Content Provider Wendy Robertson University of Iowa 2010 Wendy C Robertson Comments Includes presenter's

More information

Access Intermediate

Access Intermediate Access 2013 - Intermediate 103-134 Advanced Queries Quick Links Overview Pages AC124 AC125 Selecting Fields Pages AC125 AC128 AC129 AC131 AC238 Sorting Results Pages AC131 AC136 Specifying Criteria Pages

More information

FORMATTING EXCEL TIMECARDS FOR IMPORT INTO FOUNDATION

FORMATTING EXCEL TIMECARDS FOR IMPORT INTO FOUNDATION FORMATTING EXCEL TIMECARDS FOR IMPORT INTO FOUNDATION In this session, we will cover a number of examples of Excel timecard templates. This session will cover mapping of the timecard to a data set that

More information

COPYRIGHTED MATERIAL. Making Excel More Efficient

COPYRIGHTED MATERIAL. Making Excel More Efficient Making Excel More Efficient If you find yourself spending a major part of your day working with Excel, you can make those chores go faster and so make your overall work life more productive by making Excel

More information

Create a Relationship to build a Pivot Table

Create a Relationship to build a Pivot Table Create a Relationship to build a Pivot Table In Excel 2013 and 2016/365 you can now create a relationship between tables of data. This is a feature that can be used to pull data from the different tables

More information

3/31/2016. Spreadsheets. Spreadsheets. Spreadsheets and Data Management. Unit 3. Can be used to automatically

3/31/2016. Spreadsheets. Spreadsheets. Spreadsheets and Data Management. Unit 3. Can be used to automatically MICROSOFT EXCEL and Data Management Unit 3 Thursday March 31, 2016 Allow users to perform simple and complex sorting Allow users to perform calculations quickly Organizes and presents figures that can

More information

How to Create Excel Dashboard used in Solutions Conference By Matt Mason

How to Create Excel Dashboard used in Solutions Conference By Matt Mason How to Create Excel Dashboard used in Solutions Conference 2017 By Matt Mason The following is a step by step procedure to create the Dashboard presented by Matt Mason in the Excel Tips and Tricks session

More information

Getting Started With Excel

Getting Started With Excel Chapter 1 Getting Started With Excel This chapter will familiarize you with various basic features of Excel. Specific features which you need to solve a problem will be introduced as the need arises. When

More information

Microsoft Excel 2013/2016 Pivot Tables

Microsoft Excel 2013/2016 Pivot Tables Microsoft Excel 2013/2016 Pivot Tables Creating PivotTables PivotTables are powerful data analysis tools. They let you summarize data in various ways and instantly change the view you use. A PivotTable

More information

M i c r o s o f t E x c e l A d v a n c e d P a r t 3-4. Microsoft Excel Advanced 3-4

M i c r o s o f t E x c e l A d v a n c e d P a r t 3-4. Microsoft Excel Advanced 3-4 Microsoft Excel 2010 Advanced 3-4 0 Absolute references There may be times when you do not want a cell reference to change when copying or filling cells. You can use an absolute reference to keep a row

More information

SAS (Statistical Analysis Software/System)

SAS (Statistical Analysis Software/System) SAS (Statistical Analysis Software/System) Clinical SAS:- Class Room: Training Fee & Duration : 23K & 3 Months Online: Training Fee & Duration : 25K & 3 Months Learning SAS: Getting Started with SAS Basic

More information

SAS (Statistical Analysis Software/System)

SAS (Statistical Analysis Software/System) SAS (Statistical Analysis Software/System) SAS Analytics:- Class Room: Training Fee & Duration : 23K & 3 Months Online: Training Fee & Duration : 25K & 3 Months Learning SAS: Getting Started with SAS Basic

More information

Installation and Getting Started Guide Alchemex for MYOB Account Right

Installation and Getting Started Guide Alchemex for MYOB Account Right Installation and Getting Started Guide Alchemex for MYOB Account Right Table of Contents Introduction... 1 What is Alchemex for MYOB Account Right?... 1 What are the benefits of using Alchemex for MYOB

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Table of Contents The Excel Window... 2 The Formula Bar... 3 Workbook View Buttons... 3 Moving in a Spreadsheet... 3 Entering Data... 3 Creating and Renaming Worksheets... 4 Opening

More information

Using Microsoft Excel to View the UCMDB Class Model

Using Microsoft Excel to View the UCMDB Class Model Using Microsoft Excel to View the UCMDB Class Model contact: j roberts - HP Software - (jody.roberts@hp.com) - 214-732-4895 Step 1 Start Excel...2 Step 2 - Select a name and the type of database used by

More information

Simply Accounting Intelligence Tips and Tricks Booklet Vol. 2

Simply Accounting Intelligence Tips and Tricks Booklet Vol. 2 Simply Accounting Intelligence Tips and Tricks Booklet Vol. 2 Contents Renaming a Data Expression... 3 Copying a Data Expression... 3 Deleting a Data Expression... 3 Renaming a Data Connection... 4 Moving

More information

Tips & Tricks: MS Excel

Tips & Tricks: MS Excel Tips & Tricks: MS Excel 080501.2319 Table of Contents Navigation and References... 3 Layout... 3 Working with Numbers... 5 Power Features... 7 From ACS to Excel and Back... 8 Teacher Notes: Test examples

More information

Access Intermediate

Access Intermediate Access 2010 - Intermediate 103-134 Advanced Queries Quick Links Overview Pages AC116 AC117 Selecting Fields Pages AC118 AC119 AC122 Sorting Results Pages AC125 AC126 Specifying Criteria Pages AC132 AC134

More information

MIS0855: Data Science In-Class Exercise for Mar Creating Interactive Dashboards

MIS0855: Data Science In-Class Exercise for Mar Creating Interactive Dashboards MIS0855: Data Science In-Class Exercise for Mar 25-27 Creating Interactive Dashboards Objective: Create a dashboard with interactive data filtering using Tableau Learning Outcomes: Understand how to create

More information

WAAT-PivotTables Accounting Seminar

WAAT-PivotTables Accounting Seminar WAAT-PivotTables-08-26-2016-Accounting Seminar Table of Contents What does a PivotTable do?... 2 How to create PivotTable:... 2 Add conditions to the PivotTable:... 2 Grouping Daily Dates into Years, Quarters,

More information

Candy is Dandy Project (Project #12)

Candy is Dandy Project (Project #12) Candy is Dandy Project (Project #12) You have been hired to conduct some market research about M&M's. First, you had your team purchase 4 large bags and the results are given for the contents of those

More information

Intermediate Excel Training Course Content

Intermediate Excel Training Course Content Intermediate Excel Training Course Content Lesson Page 1 Absolute Cell Addressing 2 Using Absolute References 2 Naming Cells and Ranges 2 Using the Create Method to Name Cells 3 Data Consolidation 3 Consolidating

More information

MICROSOFT Excel 2010 Advanced Self-Study

MICROSOFT Excel 2010 Advanced Self-Study MICROSOFT Excel 2010 Advanced Self-Study COPYRIGHT This manual is copyrighted: S&G Training Limited. This manual may not be copied, photocopied or reproduced in whole or in part without the written permission

More information

MODULE III: NAVIGATING AND FORMULAS

MODULE III: NAVIGATING AND FORMULAS MODULE III: NAVIGATING AND FORMULAS Copyright 2012, National Seminars Training Navigating and Formulas Using Grouped Worksheets When multiple worksheets are selected, the worksheets are grouped. If you

More information

Quick Guide for Excel 2015 Data Management November 2015 Training:

Quick Guide for Excel 2015 Data Management November 2015 Training: http://pfw.edu Quick Guide for Excel 2015 Data Management November 2015 Training: http://pfw.edu/training Excel 2016 Data Management AutoFill and Custom Lists AutoFill 1. Select the range that contains

More information

Introduction to Microsoft Access 2016

Introduction to Microsoft Access 2016 Introduction to Microsoft Access 2016 A database is a collection of information that is related. Access allows you to manage your information in one database file. Within Access there are four major objects:

More information

New Perspectives on Microsoft Excel Module 5: Working with Excel Tables, PivotTables, and PivotCharts

New Perspectives on Microsoft Excel Module 5: Working with Excel Tables, PivotTables, and PivotCharts New Perspectives on Microsoft Excel 2016 Module 5: Working with Excel Tables, PivotTables, and PivotCharts Objectives, Part 1 Explore a structured range of data Freeze rows and columns Plan and create

More information

Creating and Using an Excel Table

Creating and Using an Excel Table Creating and Using an Excel Table Overview of Excel 2007 tables In earlier Excel versions, the organization of data in tables was referred to as an Excel database or list. An Excel table is not to be confused

More information

Microsoft How to Series

Microsoft How to Series Microsoft How to Series Getting Started with EXCEL 2007 A B C D E F Tabs Introduction to the Excel 2007 Interface The Excel 2007 Interface is comprised of several elements, with four main parts: Office

More information

Tutorial: Create an Excel Dashboard. Overview. **** Download the Example Dashboard ****

Tutorial: Create an Excel Dashboard. Overview. **** Download the Example Dashboard **** Tutorial: Create an Excel Dashboard This page walks through building an Excel dashboard with a mobile tool called CommCare. Similar to how Excel helps people build spreadsheets, CommCare enables anyone

More information

Chapter 4. Microsoft Excel

Chapter 4. Microsoft Excel Chapter 4 Microsoft Excel Topic Introduction Spreadsheet Basic Screen Layout Modifying a Worksheet Formatting Cells Formulas and Functions Sorting and Filling Borders and Shading Charts Introduction A

More information

Excel Intermediate. Click in the name column of our Range of Data. (Do not highlight the column) Click on the Data Tab in the Ribbon

Excel Intermediate. Click in the name column of our Range of Data. (Do not highlight the column) Click on the Data Tab in the Ribbon Custom Sorting and Subtotaling Excel Intermediate Excel allows us to sort data whether it is alphabetic or numeric. Simply clicking within a column or row of data will begin the process. Click in the name

More information

SAP BusinessObjects Live Office User Guide SAP BusinessObjects Business Intelligence platform 4.1 Support Package 2

SAP BusinessObjects Live Office User Guide SAP BusinessObjects Business Intelligence platform 4.1 Support Package 2 SAP BusinessObjects Live Office User Guide SAP BusinessObjects Business Intelligence platform 4.1 Support Package 2 Copyright 2013 SAP AG or an SAP affiliate company. All rights reserved. No part of this

More information

Introduction to Microsoft Excel 2016

Introduction to Microsoft Excel 2016 Screen Elements: Introduction to Microsoft Excel 2016 The Ribbon The Ribbon is designed to help you quickly find the commands that you need to complete a task. Commands are organized in logical groups,

More information

INTRODUCTION ACCESS 2010

INTRODUCTION ACCESS 2010 INTRODUCTION ACCESS 2010 Overview of Ms. Access 2010 Microsoft Access is a computer application used to create and manage databases. Access Databases can store any type of information: numbers, text, and

More information

Tutorial 2/4: Calculations & Functions. Tutorial 1/4: Getting Started. Tutorial 3/4: Statistical Analysis. Tutorial 4/4: Basic Formatting

Tutorial 2/4: Calculations & Functions. Tutorial 1/4: Getting Started. Tutorial 3/4: Statistical Analysis. Tutorial 4/4: Basic Formatting Basic Microsoft Excel skills will be required for some of your Glenn College courses and may prove very helpful for others. This four-part tutorial addresses getting started with Excel, performing calculations

More information

Beginner s Guide to Microsoft Excel 2002

Beginner s Guide to Microsoft Excel 2002 Beginner s Guide to Microsoft Excel 2002 Microsoft Excel lets you create spreadsheets, which allow you to make budgets, track inventories, calculate profits, and design charts and graphs. 1. Open Start

More information

Contents Part I: Background Information About This Handbook... 2 Excel Terminology Part II: Advanced Excel Tasks...

Contents Part I: Background Information About This Handbook... 2 Excel Terminology Part II: Advanced Excel Tasks... Version 3 Updated November 29, 2007 Contents Contents... 3 Part I: Background Information... 1 About This Handbook... 2 Excel Terminology... 3 Part II:... 4 Advanced Excel Tasks... 4 Export Data from

More information

PHLI Instruction (734) Introduction. Lists.

PHLI Instruction (734) Introduction. Lists. INTERMEDIATE EXCEL Introduction Microsoft Excel has many purposes. In addition to being an excellent data manger, Excel provides the means to perform complex analysis and evaluation of data. This brief

More information

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

USING MICROSOFT EXCEL 2016 Guided Project 4-3

USING MICROSOFT EXCEL 2016 Guided Project 4-3 Guided Project 4-3 Clemenson Imaging analyzes expense reports from field representatives as well as patient and image data. To complete the worksheets, you format data as a table and build an advanced

More information

Excel Level 3 - Advanced

Excel Level 3 - Advanced Excel Level 3 - Advanced Introduction This document covers some of the more advanced features of Excel. Spreadsheets can be used in such a multiplicity of ways that it cannot hope to even touch on all

More information

MS Office 2016 Excel Pivot Tables - notes

MS Office 2016 Excel Pivot Tables - notes Introduction Why You Should Use a Pivot Table: Organize your data by aggregating the rows into interesting and useful views. Calculate and sum data quickly. Great for finding typos. Create a Pivot Table

More information

Building Self-Service BI Solutions with Power Query. Written By: Devin

Building Self-Service BI Solutions with Power Query. Written By: Devin Building Self-Service BI Solutions with Power Query Written By: Devin Knight DKnight@PragmaticWorks.com @Knight_Devin CONTENTS PAGE 3 PAGE 4 PAGE 5 PAGE 6 PAGE 7 PAGE 8 PAGE 9 PAGE 11 PAGE 17 PAGE 20 PAGE

More information