SAS Enterprise Guide and Add-In for Microsoft Office Hands-on Workshop

Size: px
Start display at page:

Download "SAS Enterprise Guide and Add-In for Microsoft Office Hands-on Workshop"

Transcription

1 SAS Enterprise Guide and Add-In for Microsoft Office Hands-on Workshop SAS Australia and New Zealand V2.1

2 1-2 Chapter 1 SAS Enterprise Guide and Add-In for Microsoft Office Hands-on Workshop Chapter 1 SAS Enterprise Guide and Add-In for Microsoft Office Hands-on Workshop 1.1 Introduction to SAS Enterprise Guide and Add-In for Microsoft Office Developing Processes with SAS Enterprise Guide Demonstration: Navigating the SAS Enterprise Guide Workspace Demonstration: Querying Data Demonstration: Create a profit report Sharing Content with SAS Add-In for Microsoft Office Demonstration: Creating a Report with the Summary Table Task Demonstration: Creating a Graph in Microsoft PowerPoint

3 3 1.1 Introduction to SAS Enterprise Guide and Add-In for Microsoft Office Introduction to SAS Enterprise Guide and Add-In for Microsoft Office Copy r i ght 2015, SAS I nsti tute I nc. All r i ghts r eser ved. Why Modernise to SAS Enterprise Guide and Add-In for Microsoft Office? SAS Enterprise Guide and Add-In for Microsoft Office provide transparent access to the power of SAS for data access, reporting, and analytics. Explore Integrate Collaborate 3 Traditionally organisations used Base SAS or the Windowing Environment to write and submit SAS code. Data was extracted from a warehouse and various versions were stored locally and dumped into other software products such as Excel for further manipulation. There were many repetitive processes and everyone had to understand SAS code well or put in a request for some work to be completed. Moving to SAS Enterprise Guide and Add-In for Microsoft Office will expose you to an easier way of working to make your day to day work more efficient. These newer interfaces open up more capability to allow all users to access the power of SAS faster, improve efficiency and have more time for in depth analysis and smarts.

4 1-4 Chapter 1 SAS Enterprise Guide and Add-In for Microsoft Office Hands-on Workshop Copy r i ght 2015, SAS I nsti tute I nc. All r i ghts r eser ved. SAS Enterprise Guide SAS Enterprise Guide provides an intuitive, visual interface to the power of SAS. SAS Enterprise Guide provides the following functionality: transparent access to SAS and other types of data interactive tasks and wizards for reporting and analysis programming interface to write and edit SAS programs the ability to export results to other applications and to the web SAS Enterprise Guide 4 Copy r i ght 2015, SAS I nsti tute I nc. All r i ghts r eser ved. SAS Add-In for Microsoft Office The SAS Add-In for Microsoft Office provides access to SAS functionality in several Office products. The SAS add-in enables you to view and interact with SAS tables and SAS Stored Processes. You can also use SAS tasks and wizards to analyze data sources and create reports. SAS Add-In for Microsoft Office 5

5 1.1 Introduction to SAS Enterprise Guide and Add-In for Microsoft Office 1-5 Copy r i ght 2015, SAS I nsti tute I nc. All r i ghts r eser ved. SAS Tasks, Wizards and Stored Processes Tasks Wizards Stored Process Provide a point-and-click interface to a specific type of analysis or report that you can perform against data. Provide a quick step-by-step mechanism for accessing several of the SAS tasks by surfacing a limited number of options. A special type of SAS program to enable you to run a SAS program and view the results in many different types of SAS applications. Stored processes consist of SAS program code and a metadata definition. 6 Although these generate SAS code behind the scenes, you do not need to understand SAS programming to use them.

6 1-6 Chapter 1 SAS Enterprise Guide and Add-In for Microsoft Office Hands-on Workshop 1.2 Developing Processes with SAS Enterprise Guide

7 1.2 Developing Processes with SAS Enterprise Guide 1-7 Navigating the SAS Enterprise Guide Workspace Start Enterprise Guide and begin to build a project. Add a dataset and explore the data. 1. Open Enterprise Guide and select New Project. 2. Enterprise Guide displays three main windows by default: Project Tree Process Flow Resources Pane (The server list is active.) 3. Insert the existing Customers SAS data set by selecting File Open Data. 4. Navigate to Servers Local Files D:\Workshop\egamo and select Customer_dim Open. A shortcut to the data set is added to the project tree and the process flow. By default, a snapshot of a few rows of the data appears in the data grid in the workspace.

8 1-8 Chapter 1 SAS Enterprise Guide and Add-In for Microsoft Office Hands-on Workshop 5. After a data source is added to the project, you can use it for analysis and reporting. With the Customer_dim data set open in the data grid, select Describe Characterize Data. 6. The Characterize Data task is in a wizard format that enables you to go through each of the three steps and modify any options. Select Next. 7. In Step 2, clear the check boxes for Graphs and SAS Data Sets. 8. Select Next.

9 1.2 Developing Processes with SAS Enterprise Guide In Step 3, limit the number of unique categorical values by typing Select Finish to run the task and view the results. The output includes frequency counts for character columns and summary statistics for numeric columns. Take note of values for Customer_Gender, Customer_Age_Group and Customer_Country. These are the variables that we will subset on. Partial Output

10 1-10 Chapter 1 SAS Enterprise Guide and Add-In for Microsoft Office Hands-on Workshop 11. Click on the toolbar to view the contents of the current project. The Characterize Data task was added in the project tree and process flow, and linked to the Customer_dim data set.

11 1.2 Developing Processes with SAS Enterprise Guide 1-11 Querying Data Use the Query Builder to create a new table called CustomerProfit by joining the Customer data with Order data. We also want to: filter rows to only display internet customers on the new dataset (Order_Type = 3) select columns that should appear in the new dataset compute a new column called Profit, by subtracting the cost from retail price sort rows on profit from highest to lowest 1. Right-click the Customer_dim table and select Query Builder. 2. In the Query Name field, enter Profit Query. 3. Select Change next to the Output name field. Notice that, by default, the new table is saved in the Work (temporary) library. 4. Select Servers Local SASUSER and enter CustomerProfit in the File name field. Select Save.

12 1-12 Chapter 1 SAS Enterprise Guide and Add-In for Microsoft Office Hands-on Workshop To verify the LIBREF associated with a library, right click the library and select Properties. 5. Select Add Tables. Navigate to Servers Local Files D:\Workshop\egamo and select Order_Fact Open to add the SAS data set to the query. This also adds the data set to the project. 6. Select Join Tables to verify the join properties. Confirm that the join type is on Customer_ID. Select Close. The Inner Join will only return data for customers who ordered products (Customer IDs that appear on both tables). 7. To add all columns from the Customer_dim table to the query, select the t1 (CUSTOMER_DIM) icon and drag it onto the Select Data tab. 8. To add all columns from the Order_fact table to the query, select the t2 (ORDER_FACT) icon and drag it onto the Select Data tab.

13 1.2 Developing Processes with SAS Enterprise Guide Customer_ID appears on both datasets and will be renamed automatically to Customer_ID1 on the new CustomerProfit dataset. To get rid of Customer_ID1, select Customer_ID1 and click Delete. 10. Profit doesn t appear on the existing datasets and has to be created by subtracting cost from retail price. To create a new column that calculates the profit, click Computed Columns New Advanced Expression Next. 11. In step 2, expand the t2 (ORDER_FACT) table. Enter the following expression by clicking on the variables and operators or typing it t2.total_retail_price ( t2.quantity * t2.costprice_per_unit ) Click Validate to verify the syntax and click Close Next.

14 1-14 Chapter 1 SAS Enterprise Guide and Add-In for Microsoft Office Hands-on Workshop 12. In step 3: Enter Profit in the Column Name field Profit in the Label field. Select Change against the Format field Select Currency under Categories and DOLLARw.d under Formats. Increase the overall width to 10 and the decimal places to 2. Select OK. 13. Click Next to view the computed column summary. Then click Finish Close.

15 1.2 Developing Processes with SAS Enterprise Guide To only have rows representing internet purchases (Order_Type = 3) Select the Filter Data tab. Drag Order_Type onto the Filter Data tab. In the New Filter window, ensure the operator is Equal to and enter 3 in the Value field. Click Next Finish. 15. To emphasize the orders with the highest profit, Select the Sort Data tab Drag Profit into the tab area. Change the Sort Direction field to Descending.

16 1-16 Chapter 1 SAS Enterprise Guide and Add-In for Microsoft Office Hands-on Workshop 16. Click Run to execute the query and verify the results. Partial Results (15 of 108,570 rows)

17 1.2 Developing Processes with SAS Enterprise Guide 1-17 Create a profit report Continue with the same project. Use the List Report Task to create a report of profit made on all female internet customers in South Africa between the ages of 15 and 45. Group report by customer name 17. Double click on CustomerProfit dataset to open in the data grid. Select Describe List Data to open the List Data window 18. To apply filters to the data, click on Edit next to Data source:. We want to display profit made on Females (Customer_Gender) from South Africa (Customer_country) between ages of 15 and 45 (Customer_Age OR Customer_Age_Group)

18 1-18 Chapter 1 SAS Enterprise Guide and Add-In for Microsoft Office Hands-on Workshop 19. Under Task filter, apply the following filters and select OK. Use AND as operator and not OR, as all criteria should be true in order for rows to be selected 20. Add the following variables to the List variables role: Customer_Age Order_Date Total_Retail_Price Profit These are the variables that will be displayed on your report. Variables will be displayed in the order they appear on your List Variable Task role. 21. Add Customer_Name to Group analysis by role. This will group customer transactions together and sort Customer_Name in ascending order by default. 22. Add Profit to the Total of role. This will create a subtotal for each customer, as well as a total for all customers that meet criteria South African female internet customers between the ages of 15 and Add Customer_Name to Identifying label role. This will add the Customer_Name as the first column, although it s not listed under List variables role.

19 1.2 Developing Processes with SAS Enterprise Guide Select Titles, then Report Titles, deselect Use default text, delete Report Listing and type Profit Report - Female Customers in South Africa Ages: Select Run.

20 1-20 Chapter 1 SAS Enterprise Guide and Add-In for Microsoft Office Hands-on Workshop Partial Output 26. Select Export Export SAS Report List Data As A Step In Project

21 1.2 Developing Processes with SAS Enterprise Guide Select Next twice to proceed to Step Select Browse next to Output File: to change location that report will be saved to. 29. Select Desktop and type Profit Report SA Females as the File Name Save 30. Next Finish 31. Close Enterprise Guide and Save project on Desktop as HOW Project

22 1-22 Chapter 1 SAS Enterprise Guide and Add-In for Microsoft Office Hands-on Workshop 1.3 Sharing Content with SAS Add-In for Microsoft Office

23 1.3 Sharing Content with SAS Add-In for Microsoft Office 1-23 Creating a Report with the Summary Table Task Use the Summary Tables wizard to create a custom report in Excel that will update automatically when opened. Also view previously created Profit Report in Excel. 1. Open Windows Excel. At the top of the new blank workbook, select SAS tab Tasks then select Summary Tables Wizard from the Tasks list. Tasks will appear in alphabetical order. 2. The Choose Data window will appear. Select External SAS Data Browse Servers Local SASHELP ORSALES Open. Then Select OK.

24 1-24 Chapter 1 SAS Enterprise Guide and Add-In for Microsoft Office Hands-on Workshop 3. Click Next to advance to Step Select Add Profit to assign the Analysis variable. Select Add Profit again to assign the Analysis variable a second time. 5. Change the first Statistic to Average and ensure the second statistic is Sum. 6. Use the drop down for Analysis variable labels and select hidden. 7. Select the Browse button for Select table format and select Currency DOLLARw.d. Increase the width to 15 and decimal places to 2. Select OK. 8. Select Next. In Step 3, classification variables are assigned to define the rows and columns of the table. 9. Select Add Year in the Columns pane. Select Add Product_Line in the Rows pane. Select Add Product_Category in the Rows pane.

25 1.3 Sharing Content with SAS Add-In for Microsoft Office Click Next. In Step 4, select Grand total only for Columns:. Select Totals at each level for Rows:. 11. Click Next twice to proceed through the final two steps. Delete the Titles and Footnotes. 12. Click Finish to view the results. Results

26 1-26 Chapter 1 SAS Enterprise Guide and Add-In for Microsoft Office Hands-on Workshop 13. On the SAS tab, select Properties Execution tab Select Refresh on file open checkbox OK 14. Select Reports for the Reports window to open then select Desktop Profit Report SA Females.srx Open. 15. Choose New worksheet: Delete.srx OK 16. The report that we previously created in SAS Enterprise Guide, now opens in Excel on a new worksheet, in the same workbook, with the name of Profit Report SA Females 17. Select File Save As Desktop Summary Report Save 18. Close Excel

27 1.3 Sharing Content with SAS Add-In for Microsoft Office 1-27 Creating a Graph in Microsoft PowerPoint Create a graph in PowerPoint that should be updated when opened. 1. Open Microsoft PowerPoint by selecting Start All Programs Microsoft Office 2013 PowerPoint Select any template / theme. 2. With the HOME tab as the active tab on the Office ribbon, select Layout Title Only. 3. Click the SAS tab. Select Tasks Bar Chart Wizard and the Choose Data window will open. 4. Verify that SASHELP.ORSALES is the Input Data OK to start the wizard. 5. Select Next to move to Step 2. Select Product_Category for the Bars: role. Select Profit for the Bar height: role.

28 1-28 Chapter 1 SAS Enterprise Guide and Add-In for Microsoft Office Hands-on Workshop 6. Select Next. Select Bar category for the Color bars by: and select 3D chart. 7. Select Next. Change the Title to Profit by Category. Select Finish.

29 1.3 Sharing Content with SAS Add-In for Microsoft Office Select graph On SAS tab, select Properties Execution select Refresh on file open OK. 9. Select File Save As Desktop Weekly Profit Graph Save. Close PowerPoint 10. Open SAS Enterprise Guide New Project 11. Double click on Servers Local Libraries SASHELP ORSALES 12. Double click on the first cell Row 1 Column 1 of the dataset. The following pop-up window will appear Yes 13. Double click Product_Line in row 1 of the dataset. Change to Babies. Do the same in row 2 and 3.

30 1-30 Chapter 1 SAS Enterprise Guide and Add-In for Microsoft Office Hands-on Workshop 14. Double click Product_Category in row 1 of the dataset. Change to Baby Gym. Do the same in row 2 and Close Enterprise Guide and Yes to Save Desktop Test Save 16. Go to Desktop and open Weekly Profit Graph.ppt. The PowerPoint will be updated automatically when you open the presentation. 17. Open Summary Report on Desktop and note that Summary report has also been updated.

Microsoft Office Illustrated Introductory, Building and Using Queries

Microsoft Office Illustrated Introductory, Building and Using Queries Microsoft Office 2007- Illustrated Introductory, Building and Using Queries Creating a Query A query allows you to ask for only the information you want vs. navigating through all the fields and records

More information

Excel Project 5 Creating Sorting, and Querying a Worksheet Database

Excel Project 5 Creating Sorting, and Querying a Worksheet Database Excel Project 5 Creating Sorting, and Querying a Worksheet Database A Microsoft Excel table can function as a simple database (organized collection of data). When an individual or small business needs

More information

Microsoft Access 2010

Microsoft Access 2010 Microsoft Access 2010 Chapter 2 Querying a Database Objectives Create queries using Design view Include fields in the design grid Use text and numeric data in criteria Save a query and use the saved query

More information

Microsoft Access 2013

Microsoft Access 2013 Microsoft Access 2013 Chapter 2 Querying a Database Objectives Create queries using Design view Include fields in the design grid Use text and numeric data in criteria Save a query and use the saved query

More information

Microsoft Access 2013

Microsoft Access 2013 Microsoft Access 2013 Chapter 2 Querying a Database Objectives Create queries using Design view Include fields in the design grid Use text and numeric data in criteria Save a query and use the saved query

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

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

Working with Data in Microsoft Excel 2010

Working with Data in Microsoft Excel 2010 Working with Data in Microsoft Excel 2010 This document provides instructions for using the sorting and filtering features in Microsoft Excel, as well as working with multiple worksheets in the same workbook

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

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

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

Let s create another simple report from one of our queries available: Author Age query.

Let s create another simple report from one of our queries available: Author Age query. Microsoft Access 6: Reports & Other Useful Functions This can be a very quick way to build a report, especially if you plan to put only a few fields on your report. When you click on the Blank Report button,

More information

Getting started with Ms Access Getting Started. Primary Key Composite Key Foreign Key

Getting started with Ms Access Getting Started. Primary Key Composite Key Foreign Key Getting started with Ms Access 2007 Getting Started Customize Microsoft Office Toolbar The Ribbon Quick Access Toolbar Navigation Tabbed Document Window Viewing Primary Key Composite Key Foreign Key Table

More information

Microsoft Access Illustrated. Unit B: Building and Using Queries

Microsoft Access Illustrated. Unit B: Building and Using Queries Microsoft Access 2010- Illustrated Unit B: Building and Using Queries Objectives Use the Query Wizard Work with data in a query Use Query Design View Sort and find data (continued) Microsoft Office 2010-Illustrated

More information

When you pass Exam : Access 2010, you complete the requirements for the Microsoft Office Specialist (MOS) - Access 2010 certification.

When you pass Exam : Access 2010, you complete the requirements for the Microsoft Office Specialist (MOS) - Access 2010 certification. Appendix 1 Microsoft Office Specialist: Access Certification Introduction The candidates for Microsoft Office Specialist certification should have core-level knowledge of Microsoft Office Access 2010.

More information

SmartView. User Guide - Analysis. Version 2.0

SmartView. User Guide - Analysis. Version 2.0 SmartView User Guide - Analysis Version 2.0 Table of Contents Page i Table of Contents Table Of Contents I Introduction 1 Dashboard Layouts 2 Dashboard Mode 2 Story Mode 3 Dashboard Controls 4 Dashboards

More information

Creating an Excel resource

Creating an Excel resource Excel Mobile Excel Mobile is a Microsoft application similar to Excel, but designed to run on handhelds. This mobile version of Excel is a spreadsheet application that allows you to manipulate numbers,

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

Complete Quick Reference Summary

Complete Quick Reference Summary Microsoft Access 2010 Complete Quick Reference Summary Microsoft Access 2010 Quick Reference Summary Advanced Filter/Sort, Use AC 153 Advanced button (Home tab Sort & Filter, Advanced Filter/Sort) All

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

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

Data Should Not be a Four Letter Word Microsoft Excel QUICK TOUR

Data Should Not be a Four Letter Word Microsoft Excel QUICK TOUR Toolbar Tour AutoSum + more functions Chart Wizard Currency, Percent, Comma Style Increase-Decrease Decimal Name Box Chart Wizard QUICK TOUR Name Box AutoSum Numeric Style Chart Wizard Formula Bar Active

More information

SAS Data Integration Studio 3.3. User s Guide

SAS Data Integration Studio 3.3. User s Guide SAS Data Integration Studio 3.3 User s Guide The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2006. SAS Data Integration Studio 3.3: User s Guide. Cary, NC: SAS Institute

More information

Access Review. 4. Save the table by clicking the Save icon in the Quick Access Toolbar or by pulling

Access Review. 4. Save the table by clicking the Save icon in the Quick Access Toolbar or by pulling Access Review Relational Databases Different tables can have the same field in common. This feature is used to explicitly specify a relationship between two tables. Values appearing in field A in one table

More information

Microsoft Access 5: Reports & Other Useful Functions

Microsoft Access 5: Reports & Other Useful Functions Microsoft Access 5: Reports & Other Useful Functions You can print out simple records of your data by using the Office menu. However, if you want to create a customized report from one or more tables or

More information

Insert Subtotals in Excel and Link Data to a Word Document

Insert Subtotals in Excel and Link Data to a Word Document CHAPTER 1 Integrated Projects More Skills 11 Insert Subtotals in Excel and Link Data to a Word Document In Excel, summary statistics such as totals and averages can be calculated for groups of data by

More information

Business Insight Authoring

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

More information

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

Enforce Referential. dialog box, click to mark the. Enforce Referential. Integrity, Cascade Update Related Fields, and. Cascade Delete Related

Enforce Referential. dialog box, click to mark the. Enforce Referential. Integrity, Cascade Update Related Fields, and. Cascade Delete Related PROCEDURES LESSON 8: MANAGING RELATIONSHIPS BETWEEN TABLES Renaming a Table 1 In the Navigation pane, right-click the table you want to rename 2 On the shortcut menu, click Rename 3 Type the new table

More information

MICROSOFT WORD. MS. Office includes the following application:

MICROSOFT WORD. MS. Office includes the following application: MICROSOFT WORD MS. Office consists of group of application developed overtime by MS work together, both in terms of accomplishing things is a similar way and in terms of providing easy of data. MS. Office

More information

Introduction to Microsoft Excel 2010

Introduction to Microsoft Excel 2010 Introduction to Microsoft Excel 2010 This class is designed to cover the following basics: What you can do with Excel Excel Ribbon Moving and selecting cells Formatting cells Adding Worksheets, Rows and

More information

Computer Applications Final Exam Study Guide

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

More information

Getting Started Guide. ProClarity Analytics Platform 6. ProClarity Professional

Getting Started Guide. ProClarity Analytics Platform 6. ProClarity Professional ProClarity Analytics Platform 6 ProClarity Professional Note about printing this PDF manual: For best quality printing results, please print from the version 6.0 Adobe Reader. Getting Started Guide Acknowledgements

More information

Working with Excel CHAPTER 1

Working with Excel CHAPTER 1 CHAPTER 1 Working with Excel You use Microsoft Excel to create spreadsheets, which are documents that enable you to manipulate numbers and formulas to quickly create powerful mathematical, financial, and

More information

Easing into Data Exploration, Reporting, and Analytics Using SAS Enterprise Guide

Easing into Data Exploration, Reporting, and Analytics Using SAS Enterprise Guide Paper 809-2017 Easing into Data Exploration, Reporting, and Analytics Using SAS Enterprise Guide ABSTRACT Marje Fecht, Prowerk Consulting Whether you have been programming in SAS for years, are new to

More information

EXCEL 2003 DISCLAIMER:

EXCEL 2003 DISCLAIMER: EXCEL 2003 DISCLAIMER: This reference guide is meant for experienced Microsoft Excel users. It provides a list of quick tips and shortcuts for familiar features. This guide does NOT replace training or

More information

Working with Excel involves two basic tasks: building a spreadsheet and then manipulating the

Working with Excel involves two basic tasks: building a spreadsheet and then manipulating the Working with Excel You use Microsoft Excel to create spreadsheets, which are documents that enable you to manipulate numbers and formulas to create powerful mathematical, financial, and statistical models

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

CounselLink Reporting. Designer

CounselLink Reporting. Designer CounselLink Reporting Designer Contents Overview... 1 Introduction to the Document Editor... 2 Create a new document:... 2 Document Templates... 3 Datasets... 3 Document Structure... 3 Layout Area... 4

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

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

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

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

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

Open Excel by following the directions listed below: Click on Start, select Programs, and the click on Microsoft Excel.

Open Excel by following the directions listed below: Click on Start, select Programs, and the click on Microsoft Excel. Candy is Dandy Grading Rubric 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 bags. You

More information

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Exam Name 1) The table Design view shows 1) A) the relationships established for the table. B) the formatting applied to the table. C) the structure of the table. D) the number of records in the table.

More information

Contents. Project One. Introduction to Microsoft Windows XP and Office Creating and Editing a Word Document. Microsoft Word 2003

Contents. Project One. Introduction to Microsoft Windows XP and Office Creating and Editing a Word Document. Microsoft Word 2003 FM TBBBB 39909 10/27/06 4:06 PM Page iii Contents FMTOC TBBBB 39909 Page iii 10/20/06 MD Preface To the Student Introduction to Microsoft Windows XP and Office 2003 ix xiv Objectives WIN 4 Introduction

More information

Microsoft Access II 1.) Opening a Saved Database Music Click the Options Enable this Content Click OK. *

Microsoft Access II 1.) Opening a Saved Database Music Click the Options Enable this Content Click OK. * Microsoft Access II 1.) Opening a Saved Database Open the Music database saved on your computer s hard drive. *I added more songs and records to the Songs and Artist tables. Click the Options button next

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

Sections in this manual

Sections in this manual 1 Sections in this manual Argus Analytics 2 The service 2 Benefits 2 Launching Argus Analytics 3 Search Interface breakdown 4 Add-in Navigation 5 Search: Free text & Facet 5 Search: Facet filter 6 Filters

More information

Advanced Excel. Click Computer if required, then click Browse.

Advanced Excel. Click Computer if required, then click Browse. Advanced Excel 1. Using the Application 1.1. Working with spreadsheets 1.1.1 Open a spreadsheet application. Click the Start button. Select All Programs. Click Microsoft Excel 2013. 1.1.1 Close a spreadsheet

More information

TUTORIAL Get Started with Tableau Desktop

TUTORIAL Get Started with Tableau Desktop TUTORIAL Get Started with Tableau Desktop Learn how to connect to data, create data visualizations, present your findings, and share your insights with others. http://onlinehelp.tableau.com/current/guides/get-started-tutorial/en-us/get-started-tutorialhome.html

More information

1 of 9 8/27/2014 10:53 AM Units: Teacher: MOExcel/Access, CORE Course: MOExcel/Access Year: 2012-13 Excel Unit A What is spreadsheet software? What are the parts of the Excel window? What are labels and

More information

TABLE OF CONTENTS. i Excel 2016 Advanced. 1 INTRODUCTION Method Software and other settings Exercise files 2

TABLE OF CONTENTS. i Excel 2016 Advanced. 1 INTRODUCTION Method Software and other settings Exercise files 2 i TABLE OF CONTENTS 1 INTRODUCTION 1 1.1 Method 1 1.2 Software and other settings 2 1.3 Exercise files 2 2 MULTIPLE WORKSHEETS 3 2.1 Working with multiple worksheets 3 Adding a worksheet 4 Deleting a worksheet

More information

Microsoft Access 2007 Module 2

Microsoft Access 2007 Module 2 Microsoft Access 007 Module http://pds.hccfl.edu/pds Microsoft Access 007: Module August 007 007 Hillsborough Community College - Professional Development and Web Services Hillsborough Community College

More information

Introduction to Microsoft Excel 2010

Introduction to Microsoft Excel 2010 Introduction to Microsoft Excel 2010 This class is designed to cover the following basics: What you can do with Excel Excel Ribbon Moving and selecting cells Formatting cells Adding Worksheets, Rows and

More information

Basic Excel. Helen Mills OME-RESA

Basic Excel. Helen Mills OME-RESA Basic Excel Helen Mills OME-RESA Agenda Introduction- Highlight Basic Components of Microsoft Excel Entering & Formatting Data, Numbers, & Tables Calculating Totals & Summaries Using Formulas Conditional

More information

Sales Presentation for Matt s Mega Mart. Objectives. Steps: By the end of this lesson, you will be able to:

Sales Presentation for Matt s Mega Mart. Objectives. Steps: By the end of this lesson, you will be able to: Sales Presentation for Matt s Mega Mart Objectives By the end of this lesson, you will be able to: Apply Theme to presentation Export Word outline to PowerPoint Create pivot charts Modify pivot charts

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

1. AUTO CORRECT. To auto correct a text in MS Word the text manipulation includes following step.

1. AUTO CORRECT. To auto correct a text in MS Word the text manipulation includes following step. 1. AUTO CORRECT - To auto correct a text in MS Word the text manipulation includes following step. - STEP 1: Click on office button STEP 2:- Select the word option button in the list. STEP 3:- In the word

More information

Microsoft Access 2010

Microsoft Access 2010 Microsoft Access 2010 Microsoft Access is database software that provides templates to help you add databases that make it easier to track, report, and share data with others. Although very powerful, the

More information

EXCEL Using Excel for Data Query & Management. Information Technology. MS Office Excel 2007 Users Guide. IT Training & Development

EXCEL Using Excel for Data Query & Management. Information Technology. MS Office Excel 2007 Users Guide. IT Training & Development Information Technology MS Office Excel 2007 Users Guide EXCEL 2007 Using Excel for Data Query & Management IT Training & Development (818) 677-1700 Training@csun.edu TABLE OF CONTENTS Introduction... 1

More information

Tutorial 2. Building a Database and Defining Table Relationships

Tutorial 2. Building a Database and Defining Table Relationships Tutorial 2 Building a Database and Defining Table Relationships Microsoft Access 2010 Objectives Learn the guidelines for designing databases and setting field properties Modify the format of a field in

More information

Introductory Excel Walpole Public Schools. Professional Development Day March 6, 2012

Introductory Excel Walpole Public Schools. Professional Development Day March 6, 2012 Introductory Excel 2010 Walpole Public Schools Professional Development Day March 6, 2012 By: Jessica Midwood Agenda: What is Excel? How is Excel 2010 different from Excel 2007? Basic functions of Excel

More information

Enterprise Client Software for the Windows Platform

Enterprise Client Software for the Windows Platform Paper 154 Enterprise Client Software for the Windows Platform Gail Kramer, SAS Institute Inc., Cary, NC Carol Rigsbee, SAS Institute Inc., Cary, NC John Toebes, SAS Institute Inc., Cary, NC Jeff Polzin,

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

Office of Instructional Technology

Office of Instructional Technology Office of Instructional Technology Microsoft Excel 2016 Contact Information: 718-254-8565 ITEC@citytech.cuny.edu Contents Introduction to Excel 2016... 3 Opening Excel 2016... 3 Office 2016 Ribbon... 3

More information

Excel Tutorial 1

Excel Tutorial 1 IT٢.we Excel 2003 - Tutorial 1 Spreadsheet Basics Screen Layout Title bar Menu bar Standard Toolbar Other Tools Task Pane Adding and Renaming Worksheets Modifying Worksheets Moving Through Cells Adding

More information

Managed Reporting Environment

Managed Reporting Environment Managed Reporting Environment WebFOCUS MANAGED REPORTING What is MRE and what does it mean for FLAIR users? MRE extends services to agencies giving them secure, self-service Web access to information they

More information

Doc. Version 1.0 Updated:

Doc. Version 1.0 Updated: OneStop Reporting Report Designer/Player 3.5 User Guide Doc. Version 1.0 Updated: 2012-01-02 Table of Contents Introduction... 3 Who should read this manual... 3 What s included in this manual... 3 Symbols

More information

INTRODUCTION... 1 UNDERSTANDING CELLS... 2 CELL CONTENT... 4

INTRODUCTION... 1 UNDERSTANDING CELLS... 2 CELL CONTENT... 4 Introduction to Microsoft Excel 2016 INTRODUCTION... 1 The Excel 2016 Environment... 1 Worksheet Views... 2 UNDERSTANDING CELLS... 2 Select a Cell Range... 3 CELL CONTENT... 4 Enter and Edit Data... 4

More information

Rev. B 12/16/2015 Downers Grove Public Library Page 1 of 40

Rev. B 12/16/2015 Downers Grove Public Library Page 1 of 40 Objectives... 3 Introduction... 3 Excel Ribbon Components... 3 File Tab... 4 Quick Access Toolbar... 5 Excel Worksheet Components... 8 Navigating Through a Worksheet... 9 Downloading Templates... 9 Using

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 Level 1

Excel Level 1 Excel 2016 - Level 1 Tell Me Assistant The Tell Me Assistant, which is new to all Office 2016 applications, allows users to search words, or phrases, about what they want to do in Excel. The Tell Me Assistant

More information

Microsoft Excel Pivot Tables & Pivot Table Charts

Microsoft Excel Pivot Tables & Pivot Table Charts Microsoft Excel 2013 Pivot Tables & Pivot Table Charts A pivot table report allows you to analyze and summarize a million rows of data in Excel 2013 without entering a single formula. Pivot Tables let

More information

Eloqua Insight Intro Analyzer User Guide

Eloqua Insight Intro Analyzer User Guide Eloqua Insight Intro Analyzer User Guide Table of Contents About the Course Materials... 4 Introduction to Eloqua Insight for Analyzer Users... 13 Introduction to Eloqua Insight... 13 Eloqua Insight Home

More information

PowerScheduler Course Tally Worksheet instructions.

PowerScheduler Course Tally Worksheet instructions. PowerScheduler Course Tally Worksheet instructions. This document will describe the process of copying course request information from PowerSchool into an Excel Course Tally Worksheet. Once the information

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

Pivots and Queries Intro

Pivots and Queries Intro Workshop: Pivots and Queries Intro An overview of the Pivot, Query and Alert functions in Multiview as a refresher for the experienced or new user, we will go over how to format an inquiry screen, create

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

Training for ICDL Spreadsheets Spreadsheets 261

Training for ICDL Spreadsheets Spreadsheets  261 261 Module Goals 1 Introduction 2 What is a Spreadsheet? 2 Section 1 Using the Application 3 1.1. Working with 3 1.2. Enhancing Productivity 11 Section 2 Cells 15 2.1. Inserting and Selecting Data 15 2.2.

More information

Frequency tables Create a new Frequency Table

Frequency tables Create a new Frequency Table Frequency tables Create a new Frequency Table Contents FREQUENCY TABLES CREATE A NEW FREQUENCY TABLE... 1 Results Table... 2 Calculate Descriptive Statistics for Frequency Tables... 6 Transfer Results

More information

Microsoft Office Specialist Excel 2016

Microsoft Office Specialist Excel 2016 77-727 Microsoft Office Specialist Excel 2016 For coverage of all objectives, please utilize Shelly Cashman Series Office 365 and Excel 2016: Comprehensive. Domain Obj Number Objective text Module Page

More information

Getting Started with Access

Getting Started with Access MS Access Chapter 2 Getting Started with Access Course Guide 2 Getting Started with Access The Ribbon The strip across the top of the program window that contains groups of commands is a component of the

More information

Basics of Spreadsheet

Basics of Spreadsheet 106 :: Data Entry Operations 6 Basics of Spreadsheet 6.1 INTRODUCTION A spreadsheet is a large sheet having data and information arranged in rows and columns. As you know, Excel is one of the most widely

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

GO! with Microsoft Access 2016 Comprehensive

GO! with Microsoft Access 2016 Comprehensive GO! with Microsoft Access 2016 Comprehensive First Edition Chapter 1 Getting Started with Microsoft Access 2016 Learning Objectives Identify Good Database Design Create a Table and Define Fields in a Blank

More information

User Guide. Web Intelligence Rich Client. Business Objects 4.1

User Guide. Web Intelligence Rich Client. Business Objects 4.1 User Guide Web Intelligence Rich Client Business Objects 4.1 2 P a g e Web Intelligence 4.1 User Guide Web Intelligence 4.1 User Guide Contents Getting Started in Web Intelligence 4.1... 5 Log into EDDIE...

More information

To complete this workbook, you will need the following file:

To complete this workbook, you will need the following file: CHAPTER 4 Excel More Skills 13 Create PivotTable Reports A PivotTable report is an interactive, cross-tabulated Excel report used to summarize and analyze data. PivotTable reports are used to ask questions

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

Crystal Reports 2008 OFT - 700

Crystal Reports 2008 OFT - 700 Crystal Reports 2008 OFT - 700 Today s road map Why use Crystal Reports Definition of a report and its components How to use the Standard Report Creation Wizard: query the database and organize the data

More information

TABLE OF CONTENTS. i Excel 2016 Basic

TABLE OF CONTENTS. i Excel 2016 Basic i TABLE OF CONTENTS TABLE OF CONTENTS I PREFACE VII 1 INTRODUCING EXCEL 1 1.1 Starting Excel 1 Starting Excel using the Start button in Windows 1 1.2 Screen components 2 Tooltips 3 Title bar 4 Window buttons

More information

Quick Reference Summary

Quick Reference Summary Microsoft Excel 2010 Quick Reference Summary Microsoft Excel 2010 Quick Reference Summary 3-D Chart, Rotate EX 462 3-D Rotation button (Chart Tools Layout tab Background, change rotation (Format Chart

More information

Copyright & License Notes 3 Introduction 13 Chapter 1 - Excel Basics 14. Chapter 2 - Working with Data 32

Copyright & License Notes 3 Introduction 13 Chapter 1 - Excel Basics 14. Chapter 2 - Working with Data 32 TABLE OF CONTENTS Copyright & License Notes 3 Introduction 13 Chapter 1 - Excel Basics 14 Creating an Excel Workbook 14 Examining the Excel Environment 15 Opening an Existing Workbook 19 Navigating a Worksheet

More information

User Guide. DataInsight-Web

User Guide. DataInsight-Web User Guide DataInsight-Web Table of Contents DataInsight-Web... i Table of Contents... i Overview... 2 Documentation and Support... 2 Finding Data... 3 Keyword Search... 3 Basic Search... 3 Advanced Search...

More information

Good Byer Stores Australia Ltd Inventory - Whitegoods department

Good Byer Stores Australia Ltd Inventory - Whitegoods department Managing Data Lists Chapter 1 Excel has some excellent features that make working with lists easy. Lists of records can be sorted, searched and filtered to produce useful information. Good Byer Stores

More information

Excel 2010 Tutorials - Video File Attributes

Excel 2010 Tutorials - Video File Attributes Get Familiar with Excel 2010 42.30 2.70 The Excel 2010 Environment 4.10 0.18 Quick Access Toolbar 3.10 0.27 Excel 2010 Ribbon 3.10 0.26 File Tab 3.10 0.28 Home Tab 5.10 0.17 Insert Tab 3.10 0.18 Page Layout

More information

Excel Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts. 6. You can use a table s sizing handle to add columns or rows to a table.

Excel Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts. 6. You can use a table s sizing handle to add columns or rows to a table. Excel Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts TRUE/FALSE 1. The header row must be row 1. ANS: F PTS: 1 REF: EX 234 2. If you freeze the top row in a worksheet and press Ctrl+Home,

More information

2013 INTERMEDIATE MANUAL

2013 INTERMEDIATE MANUAL C B C H O U S E 2 4 C A N N I N G S T R E E T E D I N B U R G H E H 3 8 E G 0 1 3 1 2 7 2 2 7 9 0 W W W. I T R A I N S C O T L A N D. C O. U K I N F O @ I T R A I N S C O T L A N D. C O. U K CONTENTS CHAPTER

More information

Advanced Excel Selecting and Navigating Cells

Advanced Excel Selecting and Navigating Cells Advanced Excel 2007 One major organizational change in Excel 2007, when compared to 2003, is the introduction of ribbons. Each ribbon reveals many more options depending on what tab is selected. The Help

More information