Informix Excel Reports Technical Guide

Size: px
Start display at page:

Download "Informix Excel Reports Technical Guide"

Transcription

1 Informix Excel Reports Technical Guide Index Revision History... 1 Introduction... 1 Overview... 2 Scheduled Jobs... 3 HTML Pages... 3 JavaScript... 3 Auto-Refreshing Workbooks... 4 Parameterised Web Queries... 4 General Instructions... 6 Hyperlink Base... 7 CGI-SQL... 8 CGI-CSV... 9 Revision History Version Date Name Description /09/2007 Doug Lawry First generic version Introduction This document gives a technical overview of custom Web Query driver scripts that enable deployment of reports in Excel containing data dynamically fetched from an Informix database server, both in terms of how it works and how it can be used in practice. A thorough knowledge of Informix and UNIX is assumed. Informix Excel Reports Technical Guide OLTP Holdings Page 1 of 9

2 Overview UNIX scheduler cron jobs Web browser Internet Explorer Web query Excel CSV report program Shell script / 4GL Web server Apache HTML page FrontPage Public FTP server /home/ftp/pub Latest CSV picker cgi-csv.cgi Generic SQL runner cgi-sql.cgi Template and data XLS, CSV Auto-refresh sheet XLS Informix database dbname@server Routine reports particularly those with long run times can be run overnight every week or month by the UNIX scheduler. These Shell scripts, which either have embedded SQL statements or call 4GL programs in more complex cases, create zipped CSV files on a public FTP server. Users would typically access these files and Excel templates into which they can be loaded via Web links, but they can equally be accessed directly from the FTP server. Reports that require parameters from the user can be accessed via Web pages that use the CGI generic SQL SELECT statement runner CGI-SQL to return dynamic results displayed with the Internet Explorer Excel plug-in. Alternatively, Excel applications can be designed to refresh their contents automatically, either directly from the database via CGI-SQL, or using the CGI-CSV script to return the contents of the latest CSV file in a specified folder from the public FTP server. Web Queries embedded in Excel applications that allow parameters to be entered by the user are created using Import Data with IQY query definition files. Informix Excel Reports Technical Guide OLTP Holdings Page 2 of 9

3 Scheduled Jobs A typical Shell script run overnight by cron to create a routine report to be presented by CGI-CSV does the following: Sets common environment variables Goes to a public FTP sub-folder Runs SQL statements to unload data Retains any SQL error messages Inserts comma separated column headings Converts unload file to CSV using unl2csv (see unl_utils at Renames the completed file using the current date A typical file name produced might be: STATS csv.gz Alternatively, some cron jobs might populate data warehouse tables for subsequent access by HTML pages or dynamic auto-refreshing Excel workbooks. HTML Pages Web pages can be written with Microsoft FrontPage - and placed in the Web server s default document directory - using HTML forms to open a parameterised CGI-SQL URL when the form is submitted. It is recommended that views are created to simplify the contents of the hidden SQL field. Any question marks in the SQL will be replaced with form fields Param1, Param2, etc. Input validation can be specified using the FrontPage GUI and is implemented via generated JavaScript. Results are returned by CGI-SQL as tab-delimited text but presented using the Excel browser plug-in (displayed as a worksheet within an Internet Explorer window) simply by setting the correct Excel MIME type in the header. Links to a formatted Excel template workbook might be provided on the initial page, with instructions on how to paste in the new data. JavaScript The following custom JavaScript function can be useful in these HTML pages: // Open URL on the current host's FTP server in new window function ftp(path) { window.open("ftp://" + window.location.host + "/" + path) } This prevents any need for an FTP server URL to be hard-coded in links from the Web page, as it can be derived from the host name of the current HTTP session. Informix Excel Reports Technical Guide OLTP Holdings Page 3 of 9

4 Auto-Refreshing Workbooks Ideally, Excel report templates should automatically refresh their content when they are opened. This is achieved via the Excel Web Query feature (Data / Import External Data / New Web Query) using either CGI-SQL or CGI-CSV (see next sections). Excel Database Query (ODBC or OLEDB) is comparatively undesirable, as this would require drivers to be installed on users PCs and allow uncontrolled access. Note that some Excel templates cannot be refreshed automatically if this would exceed the practical limit on the volume of data returned by a Web Query, which can be less the maximum number of rows if there are a large number of columns. The procedure to add a Web query with no parameters is as follows: 1. Open a new worksheet. 2. Choose Data / Import External Data / New Web Query from the menu. 3. Type in a URL (see CGI-SQL and CGI-CSV) and click the Go button. 4. Click Options and untick Treat consecutive delimiters as one. 5. Tip: Sometimes you need to tick Disable date recognition. 6. Click Import and then Properties. 7. Untick Adjust column width if desired. 8. Tip: tick Refresh data on file open for dynamic workbooks. 9. Click OK twice. Subsequent changes can be made using the External Data toolbar (enable with View / Toolbars). See also General Instructions. Parameterised Web Queries Some Excel workbooks will need to contain embedded CGI-SQL queries specified with the Data / Import External Data / Import Data menu option, with selection criteria taken from enterable cells within the workbook. CGI-SQL only accepts single SELECT statements, but procedures can be used to return a data set using syntax such as: SELECT * FROM TABLE (FUNCTION some_procedure(?,?)) AS x1 (return1, return2) Whatever form of SELECT statement is used, question marks should be used in the select statement to indicate where variable values should be substituted using CGI parameters Param1, Param2, etc. Before adding a parameterised Web Query to a worksheet, you must first create an Excel Web Query File (suffix IQY). This is a plain text file, so you can use Notepad, Wordpad, Gvim, etc. Some examples follow: WEB 1 Format=Excel&SQL=["SQL"]&Param1=["Start"]&Param2=["End"] Informix Excel Reports Technical Guide OLTP Holdings Page 4 of 9

5 WEB 1 Heading=None&SQL=["SQL"]&Param1=["Start"]&Param2=["End"] As well as the SELECT statement itself ( SQL ), for each question mark place marker it contains (as for PREPARE in 4GL and Java), CGI-SQL needs a parameter ( Param1, Param2, etc.), giving names to be used in Excel ( Prefix, Start Date, etc.). Note that the second IQY file has Heading=None instead of Format=Excel to suppress column headings and tabulation from appearing in Excel. Once you have created the IQY file, you can then complete the remaining steps in Excel. The following is a step-by step guide to an example approach, with the SQL statement hidden on the worksheet together with the IQY file contents for future reference: 1. Open a new empty worksheet in Excel. 2. Enter SQL: in cell A1 and the SELECT statement in cell B1. 3. If you paste in the contents containing line feeds, make sure you have the cursor in the function bar (not the cell), and make it readable afterwards by highlighting cells B1:J1 (perhaps) and using Format Cells / Alignment / Vertical Top + Wrap text + Merge Cells, increasing the row height as necessary and changing the font to Courier New. 4. Enter IQY: in cell A2 and the IQY file contents in cell B2 for future reference (optional), repeating step 3 with cells B2:J2 as necessary. 5. Enter a parameter label in cell A3 and a value in cell B3. 6. Define input constraints and provide floating help using Data / Validation from the menu. 7. Repeat 5 and 6 as necessary. 8. Leave a blank row and go to column A on the next row and choose Data / Import External Data / Import Data from the menu. 9. Locate the IQY file and click the Open button. 10. Click Properties and change the settings of Refresh data on file open (usually but not in this example), Adjust column width and Preserver cell formatting (usually necessary) as desired. Click OK. 11. Click Parameters. For each one, click Get the value from the following cell, click in the input field and click on the cell containing the parameter value, ticking Refresh automatically when cell value changes as desired (used in this example although this is abnormal). Click OK when all parameters have been mapped to cells. 12. Click OK to complete the Import Data process. 13. Select rows 1 and 2 and choose Format / Row / Hide from the menu. Note that Excel malfunctions if a cell containing a date is mapped in directly as a Web Query parameter. To get around this, a hidden cell containing a text version of the date value should be set up using the formula illustrated below, where C1 (which you will need to substitute) is the location of the cell where the user will enter a date: =TEXT(C1, dd/mm/yyyy ) This hidden cell should then be mapped to the Web Query in the Parameters dialogue. See also General Instructions in the next section. Informix Excel Reports Technical Guide OLTP Holdings Page 5 of 9

6 General Instructions The following formatting might typically be applied to Excel reports: Screen Layout (except pivot tables and charts) 1. Highlight the column headings. 2. Press the Bold toolbar button. 3. Choose Data / Filter / AutoFilter from the menu. 4. Use toolbar buttons to set the Fill Color to Gray-25% and set borders around these cells. 5. While still on the column headings, highlight from there to end of file with Shift-Ctrl-End. 6. Press the Left Justify toolbar button. 7. Choose Format / Column / AutoFit Selection from the menu. 8. Go to column A of the first data row and choose Window / Freeze Panes from the menu. Print Layout 1. Choose File / Page Setup from the menu. 2. On the Page tab, set Scaling to Fit to 1 page(s) wide by 9999 tall. 3. Set Orientation to Landscape if necessary. 4. On the Header/Footer tab, press the set Custom Header button. 5. Enter text such as &[Tab] in Center section as desired. 6. On the Header/Footer tab, press the set Custom Footer button. 7. Enter &[File] / Page &[Page] of &[Pages] / &[Date] &[Time] in Left / Center / Right section. 8. Variables markers &[name] can be inserted in 4 and 6 using provided buttons. 9. On the Sheet tab, set Rows to repeat at top (typically $1:$1 ). Pivot tables are created from data worksheets as described below (note that this cannot be performed on Web Queries directly as you can with ODBC): 1. Select the base data worksheet and place the cursor in the Web query table (if any). 2. Choose Data / PivotTable and PivotChart Report from the menu. 3. Select PivotChart report (with PivotTable report) if desired. 4. Describe the columns or area to be included (done automatically for Web Queries). 5. Click Next and then Layout. 6. Drag columns objects to the required locations. 7. Double-click columns to change their properties. 8. Tip: Advanced / AutoSort can be useful. 9. Click OK when the Layout is finished. 10. Click Options and change settings as desired. 11. Tip: tick Refresh on open for dynamic workbooks. 12. Click OK and then Finish. Subsequent changes can be made using the Pivot Table toolbar (enable with View / Toolbars). To replace the contents of a work sheet without loss of format: 1. Open the file containing new data to be imported. 2. Right click at the top left to highlight all cells. 3. Select "Copy" from the drop-down menu. 4. Open the existing formatted work sheet. 5. Right click at the top left to highlight all cells. 6. Select "Paste Special" from the drop-down menu. 7. Choose "Values and number formats" and click "OK". Drop-down lists to pre-select a value for a field that does not appear in the body of a pivot table (known as "page fields") only provide for selection of one value or all. However, multiple selection can be achieved as follows: 1. Click the right mouse button on the drop-down list. Informix Excel Reports Technical Guide OLTP Holdings Page 6 of 9

7 2. Choose "Field Settings" (Excel 2000+) or "PivotTable Field" (Excel 95). 3. Click the left mouse button on all values you don't want in "Hide Items" and click "OK". 4. Click the right mouse button on the drop-down list. 5. Choose "Table Options" (Excel only). 6. Make sure "Subtotal hidden page items" is not checked and click "OK". Internet Explorer can sometimes fail to detect that a file on an FTP server has been updated, and instead returns the version previously viewed from a local copy. The following steps should be taken whenever you suspect this is happening: 1. Select Tools / Internet Options from the Internet Explorer menu. 2. Stay on the "General" tab, which is displayed by default. 3. Click "Delete Files" within the "Temporary Internet files" box. 4. Leave "Delete all offline content" unchecked and click "OK". Hyperlink Base Excel workbooks containing Web Queries should be developed and tested on another system before being deployed on the live system. This means that Web Query URLs routinely need to be changed throughout a workbook to point to the appropriate server when the workbook is redeployed on another machine, which can be time-consuming. A way was therefore developed to do this. Installation 1. Obtain the file WebQueryServer.xla from the author. 2. Copy it into %APPDATA%\Microsoft\AddIns. 3. Start Excel and choose Tools / Add-Ins from the menu. 4. Tick Web Query Server and click OK. 5. Right click in the toolbar area are choose Customize. 6. On the Commands tab, choose Macros under Categories. 7. Drag Custom Button to the toolbar of your choice. 8. Right click on the new button and change Name to Web Query Server. 9. Select Change Button Image and choose your preferred icon. 10. Right click on the new button again select Assign Macro. 11. Enter the macro name WebQueryServer.Main. 12. Click OK and Close. Usage 1. Open the Excel workbook containing your Web Queries. 2. Choose File / Properties from the menu. 3. Select the Summary tab. 4. Set Hyperlink Base to the desired value. 5. Tip: you should also set Title, Author and Company. 6. Click OK and then the Web Query Server toolbar button. The add-in goes through your workbook changing all Web Query URLs to be relative to the provided hyperlink base. Note that Excel does not honour relative URLs in Web Queries and will not otherwise take account of your hyperlink base entry. Informix Excel Reports Technical Guide OLTP Holdings Page 7 of 9

8 CGI-SQL This is a general purpose infrastructure tool that dynamically returns the results of a single Informix SQL SELECT statement to a Web page or Excel Web Query, avoiding the need for any ODBC or OLEDB drivers on PCs and controlling the size and run-times of queries attempted. It can be called with a URL such as: This invokes a Shell script located in the Apache CGI directory cgi-bin which will need modification for each installation: cgi-sql.cgi After setting environment variables, the Shell script runs ESQL-C program cgi-sql.exe located in the same CGI directory in place of itself. ESQL/C was the only language available in which the Informix SQL DESCRIBE statement can be used, and this is crucial for deriving the names of columns returned by the specified SELECT statement. However, the SELECT statement is actually run in a sub-process using "dbaccess", as wrapper statements OUTPUT and UNLOAD are not available in ESQL/C. The following CGI parameters are evaluated: Requiremen t Either And Name Value Comments SQL Heading Database MaxRows Password Param1-99 Format Single SELECT statement Free text Database name Maximum rows to select Program access password Query variables 1 to 99 "Excel" "Text" Required Default NULL Default $CGISQLDATABASE Default Fail!= $CGISQLPASSWORD Default NULL Default, tab-delimited data Formatted HTML These parameters are extracted using C functions contained in a general purpose CGI library by Andrew Girow: Either GET or POST protocols can be used. However, POST is generally used wherever possible to hide CGI parameters and because GET has a limit on the total size. The ESQL/C program does the following: CGI parameters are extracted and validated or defaulted where possible. Any errors result in a message being returned via standard output as plain text HTML In particular, if parameter Password was specified, it must match environment variable CGISQLPASSWORD. Variable place markers (? ) in the SELECT statement and Header parameter (if supplied) are successively replaced with the values of CGI parameters Param1, Param2, etc. The SQL statement is checked to ensure that it is a single SELECT statement, and the number of rows returned (defaulting to the maximum that can be loaded into an Excel worksheet) is limited by insertion of a FIRST clause. If Format=Text was specified, the select statement will be prefixed with OUTPUT TO filename, otherwise a tab-delimited file suitable for loading into Excel will be created instead using UNLOAD TO filename. If environment variable EXPLAIN is set to ON, the Informix statement SET EXPLAIN ON will be applied beforehand. Informix Excel Reports Technical Guide OLTP Holdings Page 8 of 9

9 After writing the resulting SQL to a file, dbaccess executes it as a sub-process with the database name taken from environment variable CGISQLDATABASE. However, a timer in the ESQL/C program will interrupt and kill the process if it takes longer than the number of seconds held in environment variable CGISQLTIMEOUT or a default of 5 minutes if not set. A plain text or Excel MIME type header is returned, followed by any heading text to be displayed as specified in the Header CGI parameter. For Excel format, the ESQL/C program opens the database, uses DESCRIBE to determine the column names returned by the SELECT statement without actually running it, replaces underscores with spaces, upshifts the first letter of the resulting separate words, and displays them with a tab separator between columns. For Excel format, the report data is then displayed as is with the final tab on each line suppressed. Text format produced by OUTPUT, however, is beautified with a separate Awk script: cgi-sql.awk A general purpose CGI-SQL front-end Web page for IT users is also available: cgi-sql.html This is particularly useful for generating a complete URL to use in a new Excel Web Query. It should be run using Internet Explorer, as other browsers do not handle some of its Microsoft FrontPage validation features. CGI-CSV This is a Shell script that returns the contents of a CSV report (already produced by a scheduled job) to a Web page or Excel Web Query. It is located in the Apache CGI directory cgi-bin (some settings may vary depending on the platform): cgi-csv.cgi It is called from Excel Web Queries with a URL such as and does the following: An Excel MIME-type is returned in the header if the URL contains Format=Excel. Otherwise, data is returned as a text/plain preformatted HTML page. The value of the CGI Name parameter is extracted from the URL and downshifted. This is assumed to be the name of a sub-directory of the public FTP area. The latest compressed CSV file in this directory is identified. Its contents are returned converted to tab-delimited text. This last stage uses gunzip, sed and csv2unl (see unl_utils at Informix Excel Reports Technical Guide OLTP Holdings Page 9 of 9

Starting Excel application

Starting Excel application MICROSOFT EXCEL 1 2 Microsoft Excel: is a special office program used to apply mathematical operations according to reading a cell automatically, just click on it. It is called electronic tables Starting

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

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

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

The HOME Tab: Cut Copy Vertical Alignments

The HOME Tab: Cut Copy Vertical Alignments The HOME Tab: Cut Copy Vertical Alignments Text Direction Wrap Text Paste Format Painter Borders Cell Color Text Color Horizontal Alignments Merge and Center Highlighting a cell, a column, a row, or the

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

Learning Map Excel 2007

Learning Map Excel 2007 Learning Map Excel 2007 Our comprehensive online Excel tutorials are organized in such a way that it makes it easy to obtain guidance on specific Excel features while you are working in Excel. This structure

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

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

Excel Tutorials - File Size & Duration

Excel Tutorials - File Size & Duration Get Familiar with Excel 46.30 2.96 The Excel Environment 4.10 0.17 Quick Access Toolbar 3.10 0.26 Excel Ribbon 3.10 0.26 File Tab 3.10 0.32 Home Tab 5.10 0.16 Insert Tab 3.10 0.16 Page Layout Tab 3.10

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

Ms excel. The Microsoft Office Button. The Quick Access Toolbar

Ms excel. The Microsoft Office Button. The Quick Access Toolbar Ms excel MS Excel is electronic spreadsheet software. In This software we can do any type of Calculation & inserting any table, data and making chart and graphs etc. the File of excel is called workbook.

More information

Excel 2007 Tutorials - Video File Attributes

Excel 2007 Tutorials - Video File Attributes Get Familiar with Excel 2007 42.40 3.02 The Excel 2007 Environment 4.10 0.19 Office Button 3.10 0.31 Quick Access Toolbar 3.10 0.33 Excel 2007 Ribbon 3.10 0.26 Home Tab 5.10 0.19 Insert Tab 3.10 0.19 Page

More information

Excel Basics. TJ McKeon

Excel Basics. TJ McKeon Excel Basics TJ McKeon What is Excel? Electronic Spreadsheet in a rows and columns layout Can contain alphabetical and numerical data (text, dates, times, numbers) Allows for easy calculations and mathematical

More information

Excel 2003 Tutorials - Video File Attributes

Excel 2003 Tutorials - Video File Attributes Using Excel Files 18.00 2.73 The Excel Environment 3.20 0.14 Opening Microsoft Excel 2.00 0.12 Opening a new workbook 1.40 0.26 Opening an existing workbook 1.50 0.37 Save a workbook 1.40 0.28 Copy a workbook

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

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

For more tips on using this workbook, press F1 and click More information about this template.

For more tips on using this workbook, press F1 and click More information about this template. Excel: Menu to ribbon reference To view Office 2003 menu and toolbar commands and their Office 2010 equivalents, click a worksheet tab at the bottom of the window. If you don't see the tab you want, right-click

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

Adding records Pasting records Deleting records Sorting records Filtering records Inserting and deleting columns Calculated columns Working with the

Adding records Pasting records Deleting records Sorting records Filtering records Inserting and deleting columns Calculated columns Working with the Show All About spreadsheets You can use a spreadsheet to enter and calculate data. A spreadsheet consists of columns and rows of cells. You can enter data directly into the cells of the spreadsheet and

More information

Microsoft Office Excel

Microsoft Office Excel Microsoft Office 2007 - Excel Help Click on the Microsoft Office Excel Help button in the top right corner. Type the desired word in the search box and then press the Enter key. Choose the desired topic

More information

Microsoft Office Excel 2013 Courses 24 Hours

Microsoft Office Excel 2013 Courses 24 Hours Microsoft Office Excel 2013 Courses 24 Hours COURSE OUTLINES FOUNDATION LEVEL COURSE OUTLINE Getting Started With Excel 2013 Starting Excel 2013 Selecting the Blank Worksheet Template The Excel 2013 Cell

More information

Excel 2013 Workshop. Prepared by

Excel 2013 Workshop. Prepared by Excel 2013 Workshop Prepared by Joan Weeks Computer Labs Manager & Madeline Davis Computer Labs Assistant Department of Library and Information Science June 2014 Excel 2013: Fundamentals Course Description

More information

More Skills 12 Create Web Queries and Clear Hyperlinks

More Skills 12 Create Web Queries and Clear Hyperlinks CHAPTER 9 Excel More Skills 12 Create Web Queries and Clear Hyperlinks Web queries are requests that are sent to web pages to retrieve and display data in Excel workbooks. Web queries work best when retrieving

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

EVALUATION ONLY. Table of Contents. iv Labyrinth Learning

EVALUATION ONLY. Table of Contents. iv Labyrinth Learning Quick Reference Tables Preface EXCEL 2013 LESSON 1: EXPLORING EXCEL 2013 Presenting Excel 2013 Starting Excel Windows 7 Windows 8 Exploring the Excel Program Window Using Worksheets and Workbooks Mousing

More information

Application of Skills: Microsoft Excel 2013 Tutorial

Application of Skills: Microsoft Excel 2013 Tutorial Application of Skills: Microsoft Excel 2013 Tutorial Throughout this module, you will progress through a series of steps to create a spreadsheet for sales of a club or organization. You will continue to

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

WEEK NO. 12 MICROSOFT EXCEL 2007

WEEK NO. 12 MICROSOFT EXCEL 2007 WEEK NO. 12 MICROSOFT EXCEL 2007 LESSONS OVERVIEW: GOODBYE CALCULATORS, HELLO SPREADSHEET! 1. The Excel Environment 2. Starting A Workbook 3. Modifying Columns, Rows, & Cells 4. Working with Worksheets

More information

Excel for Dummies: Quick Reference

Excel for Dummies: Quick Reference Excel for Dummies: Quick Reference Walkenbach, John ISBN-13: 9780764539879 Table of Contents The Big Picture: Microsoft Office Excel 2003. What You See: The Excel Window. What You See: Dialog Boxes. Toolbar

More information

Excel Basic 1 GETTING ACQUAINTED WITH THE ENVIRONMENT 2 INTEGRATION WITH OFFICE EDITING FILES 4 EDITING A WORKBOOK. 1.

Excel Basic 1 GETTING ACQUAINTED WITH THE ENVIRONMENT 2 INTEGRATION WITH OFFICE EDITING FILES 4 EDITING A WORKBOOK. 1. Excel Basic 1 GETTING ACQUAINTED WITH THE ENVIRONMENT 1.1 Introduction 1.2 A spreadsheet 1.3 Starting up Excel 1.4 The start screen 1.5 The interface 1.5.1 A worksheet or workbook 1.5.2 The title bar 1.5.3

More information

The American University in Cairo. Academic Computing Services. Excel prepared by. Maha Amer

The American University in Cairo. Academic Computing Services. Excel prepared by. Maha Amer The American University in Cairo Excel 2000 prepared by Maha Amer Spring 2001 Table of Contents: Opening the Excel Program Creating, Opening and Saving Excel Worksheets Sheet Structure Formatting Text

More information

Excel. Excel Options click the Microsoft Office Button. Go to Excel Options

Excel. Excel Options click the Microsoft Office Button. Go to Excel Options Excel Excel Options click the Microsoft Office Button. Go to Excel Options Templates click the Microsoft Office Button. Go to New Installed Templates Exercise 1: Enter text 1. Open a blank spreadsheet.

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 Contents. MS Excel /3/2011 JSD#2-Neptune Page 1

Excel Contents. MS Excel /3/2011 JSD#2-Neptune Page 1 Excel 2013 Contents Contents... 1 Opening Start Screen... 2 Formatting cells... 2 Modifying information in a cell... 2 Autofil... 3 Merge and Center Headings and Merge Cells... 3 Auto Calculation... 3

More information

Excel 2013 Part 2. 2) Creating Different Charts

Excel 2013 Part 2. 2) Creating Different Charts Excel 2013 Part 2 1) Create a Chart (review) Open Budget.xlsx from Documents folder. Then highlight the range from C5 to L8. Click on the Insert Tab on the Ribbon. From the Charts click on the dialogue

More information

Excel Select a template category in the Office.com Templates section. 5. Click the Download button.

Excel Select a template category in the Office.com Templates section. 5. Click the Download button. Microsoft QUICK Excel 2010 Source Getting Started The Excel Window u v w z Creating a New Blank Workbook 2. Select New in the left pane. 3. Select the Blank workbook template in the Available Templates

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

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

MOVING AND COPYING DATA...

MOVING AND COPYING DATA... Overview NOTES... 2 OVERVIEW... 3 VIEW THE PROJECT... 5 USING FORMULAS... 6 BASIC EXCEL REVIEW... 6 ENTERING FORMULAS... 7 Typing formulas... 7 Clicking to insert cell references... 7 Using a simple cell

More information

Export a PROTECT Report to Excel (User s Guide Lesson 21 : Reports) Tips for Using Microsoft Excel and Exported Reports

Export a PROTECT Report to Excel (User s Guide Lesson 21 : Reports) Tips for Using Microsoft Excel and Exported Reports Export a PROTECT Report to Excel (User s Guide Lesson 21 : Reports) 1. Run a PROTECT Export report 2. Click the Export button which is at far left on the toolbar in the PROTECT report window. 3. The Export

More information

Spreadsheets Microsoft Office Button Ribbon

Spreadsheets Microsoft Office Button Ribbon Getting started with Excel 2007 you will notice that there are many similar features to previous versions. You will also notice that there are many new features that you ll be able to utilize. There are

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

ECDL Module 4 REFERENCE MANUAL

ECDL Module 4 REFERENCE MANUAL ECDL Module 4 REFERENCE MANUAL Spreadsheets Microsoft Excel XP Edition for ECDL Syllabus Four PAGE 2 - ECDL MODULE 4 (USING MICROSOFT EXCEL XP) - MANUAL 4.1 USING THE APPLICATION... 4 4.1.1 FIRST STEPS

More information

Microsoft Excel 2010

Microsoft Excel 2010 Microsoft Excel 2010 omar 2013-2014 First Semester 1. Exploring and Setting Up Your Excel Environment Microsoft Excel 2010 2013-2014 The Ribbon contains multiple tabs, each with several groups of commands.

More information

Creating a Spreadsheet by Using Excel

Creating a Spreadsheet by Using Excel The Excel window...40 Viewing worksheets...41 Entering data...41 Change the cell data format...42 Select cells...42 Move or copy cells...43 Delete or clear cells...43 Enter a series...44 Find or replace

More information

12 BASICS OF MS-EXCEL

12 BASICS OF MS-EXCEL 12 BASICS OF MS-EXCEL 12.1 INTRODUCTION MS-Excel 2000 is a Windows based application package. It is quite useful in entering, editing, analysis and storing of data. Arithmetic operations with numerical

More information

Find it faster at

Find it faster at Index Numbers 255 items displayed limitation, dealing with, 199 200 8,000 items in column field, limits associated with, 200 201 32,500 unique items limitations associated with Excel data sources, 198

More information

Excel Foundation Quick Reference (Windows PC)

Excel Foundation Quick Reference (Windows PC) Excel Foundation Quick Reference (Windows PC) See https://staff.brighton.ac.uk/is/training/pages/excel/foundation.aspx for videos and exercises to accompany this quick reference card. Structure of a spreadsheet

More information

Business Intelligence Centre. Pastel Accounting BIC. Tips and Tricks

Business Intelligence Centre. Pastel Accounting BIC. Tips and Tricks Business Intelligence Centre Pastel Accounting BIC Tips and Tricks Contents Creating and linking a report... 3 Copy and Pasting BIC Reports... 6 Importing and exporting BIC reports... 8 Automatically distribute

More information

Appendix A Microsoft Office Specialist exam objectives

Appendix A Microsoft Office Specialist exam objectives A 1 Appendix A Microsoft Office Specialist exam objectives This appendix covers these additional topics: A Excel 2013 Specialist exam objectives, with references to corresponding coverage in ILT Series

More information

THE EXCEL ENVIRONMENT... 1 EDITING...

THE EXCEL ENVIRONMENT... 1 EDITING... Excel Essentials TABLE OF CONTENTS THE EXCEL ENVIRONMENT... 1 EDITING... 1 INSERTING A COLUMN... 1 DELETING A COLUMN... 1 INSERTING A ROW... DELETING A ROW... MOUSE POINTER SHAPES... USING AUTO-FILL...

More information

-Using Excel- *The columns are marked by letters, the rows by numbers. For example, A1 designates row A, column 1.

-Using Excel- *The columns are marked by letters, the rows by numbers. For example, A1 designates row A, column 1. -Using Excel- Note: The version of Excel that you are using might vary slightly from this handout. This is for Office 2004 (Mac). If you are using a different version, while things may look slightly different,

More information

Day : Date : Objects : Open MS Excel program * Open Excel application. Select : start. Choose: programs. Choose : Microsoft Office.

Day : Date : Objects : Open MS Excel program * Open Excel application. Select : start. Choose: programs. Choose : Microsoft Office. Day : Date : Objects : Open MS Excel program * Open Excel application. Select : start Choose: programs Choose : Microsoft Office Select: Excel *The interface of Excel program - Menu bar. - Standard bar.

More information

Word 2016 Advanced. North American Edition SAMPLE

Word 2016 Advanced. North American Edition SAMPLE Word 2016 Advanced Word 2016 Advanced North American Edition WORD 2016 ADVANCED Page 2 2015 Cheltenham Group Pty. Ltd. All trademarks acknowledged. E&OE. No part of this document may be copied without

More information

Intermediate Excel 2003

Intermediate Excel 2003 Intermediate Excel 2003 Introduction The aim of this document is to introduce some techniques for manipulating data within Excel, including sorting, filtering and how to customise the charts you create.

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

Lesson 19 Organizing and Enhancing Worksheets

Lesson 19 Organizing and Enhancing Worksheets Organizing and Enhancing Worksheets Computer Literacy BASICS: A Comprehensive Guide to IC 3, 5 th Edition 1 Objectives Hide, show, and freeze columns and rows. Create, rename, and delete worksheets. Change

More information

Microsoft Excel 2010 Basic

Microsoft Excel 2010 Basic Microsoft Excel 2010 Basic Introduction to MS Excel 2010 Microsoft Excel 2010 is a spreadsheet software in the new Microsoft 2010 Office Suite. Excel allows you to store, manipulate and analyze data in

More information

Index. C calculated fields, vs. calculated items, 56 correcting results in, 67 creating, 61 count of unique items, 66

Index. C calculated fields, vs. calculated items, 56 correcting results in, 67 creating, 61 count of unique items, 66 Index symbols % Difference From custom calculation, 49, 65 % of Column custom calculation, 53 % Of custom calculation, 48 % of Row custom calculation, 52 % of Total custom calculation, 54 < less than symbol,

More information

Business Intelligence Centre Pastel Evolution BIC. Tips and Tricks Volume 1

Business Intelligence Centre Pastel Evolution BIC. Tips and Tricks Volume 1 Business Intelligence Centre Pastel Evolution BIC Tips and Tricks Volume 1 Table of Contents Creating and linking a report... 3 Copy and Pasting BIC Reports... 7 Importing and exporting BIC reports...

More information

Using Excel to Troubleshoot EMIS Data

Using Excel to Troubleshoot EMIS Data Using Excel to Troubleshoot EMIS Data Overview Basic Excel techniques can be used to analyze EMIS data from Student Information Systems (SISs), from the Data Collector, and on ODE EMIS reports This session

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 2013 for Beginners

Excel 2013 for Beginners Excel 2013 for Beginners Class Objective: This class will familiarize you with the basics of using Microsoft Excel. Class Outline: Introduction to Microsoft Excel 2013... 1 Microsoft Excel...2-3 Getting

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

Excel Main Screen. Fundamental Concepts. General Keyboard Shortcuts Open a workbook Create New Save Preview and Print Close a Workbook

Excel Main Screen. Fundamental Concepts. General Keyboard Shortcuts Open a workbook Create New Save Preview and Print Close a Workbook Excel 2016 Main Screen Fundamental Concepts General Keyboard Shortcuts Open a workbook Create New Save Preview and Print Close a Ctrl + O Ctrl + N Ctrl + S Ctrl + P Ctrl + W Help Run Spell Check Calculate

More information

Excel 2003 Tutorial II

Excel 2003 Tutorial II This tutorial was adapted from a tutorial by see its complete version at http://www.fgcu.edu/support/office2000/excel/index.html Excel 2003 Tutorial II Charts Chart Wizard Chart toolbar Resizing a chart

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

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

EXCEL 2010 PROCEDURES

EXCEL 2010 PROCEDURES EXCEL 2010 PROCEDURES Starting Excel 1 Click the Start 2 Click All Programs 3 Click the Microsoft Office folder icon 4 Click Microsoft Excel 2010 Naming and Saving (Ctrl+S) a Workbook 1 Click File 2 Click

More information

Excel Advanced

Excel Advanced Excel 2016 - Advanced LINDA MUCHOW Alexandria Technical & Community College 320-762-4539 lindac@alextech.edu Table of Contents Macros... 2 Adding the Developer Tab in Excel 2016... 2 Excel Macro Recorder...

More information

Nauticom NetEditor: A How-to Guide

Nauticom NetEditor: A How-to Guide Nauticom NetEditor: A How-to Guide Table of Contents 1. Getting Started 2. The Editor Full Screen Preview Search Check Spelling Clipboard: Cut, Copy, and Paste Undo / Redo Foreground Color Background Color

More information

Advanced Excel for EMIS Coordinators

Advanced Excel for EMIS Coordinators Advanced Excel for EMIS Coordinators Helen Mills helenmills@metasolutions.net 2015 Metropolitan Educational Technology Association Outline Macros Conditional Formatting Text to Columns Pivot Tables V-Lookup

More information

REPORTING Copyright Framework Private Equity Investment Data Management Ltd

REPORTING Copyright Framework Private Equity Investment Data Management Ltd REPORTING Copyright Framework Private Equity Investment Data Management Ltd - 2016 Table of Contents Standard Reports... 3 Standard Report Pack... 4 General Data Protection and Framework... 7 Partner Bank

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

Introduction to Microsoft Excel 2007

Introduction to Microsoft Excel 2007 Introduction to Microsoft Excel 2007 Microsoft Excel is a very powerful tool for you to use for numeric computations and analysis. Excel can also function as a simple database but that is another class.

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

EXCEL TUTORIAL.

EXCEL TUTORIAL. EXCEL TUTORIAL Excel is software that lets you create tables, and calculate and analyze data. This type of software is called spreadsheet software. Excel lets you create tables that automatically calculate

More information

Table of Contents. 1. Creating a Microsoft Excel Workbook...1 EVALUATION COPY

Table of Contents. 1. Creating a Microsoft Excel Workbook...1 EVALUATION COPY Table of Contents Table of Contents 1. Creating a Microsoft Excel Workbook...1 Starting Microsoft Excel...1 Creating a Workbook...2 Saving a Workbook...3 The Status Bar...5 Adding and Deleting Worksheets...6

More information

Microsoft Office Excel 2007: Basic. Course Overview. Course Length: 1 Day. Course Overview

Microsoft Office Excel 2007: Basic. Course Overview. Course Length: 1 Day. Course Overview Microsoft Office Excel 2007: Basic Course Length: 1 Day Course Overview This course teaches the basic functions and features of Excel 2007. After an introduction to spreadsheet terminology and Excel's

More information

DESCRIPTION 1 TO DEFINE A NAME 2. USING RANGE NAMES 2 Functions 4 THE IF FUNCTION 4 THE VLOOKUP FUNCTION 5 THE HLOOKUP FUNCTION 6

DESCRIPTION 1 TO DEFINE A NAME 2. USING RANGE NAMES 2 Functions 4 THE IF FUNCTION 4 THE VLOOKUP FUNCTION 5 THE HLOOKUP FUNCTION 6 Table of contents The use of range names 1 DESCRIPTION 1 TO DEFINE A NAME 2 USING RANGE NAMES 2 Functions 4 THE IF FUNCTION 4 THE VLOOKUP FUNCTION 5 THE HLOOKUP FUNCTION 6 THE ROUND FUNCTION 7 THE SUMIF

More information

Excel 2010: Getting Started with Excel

Excel 2010: Getting Started with Excel Excel 2010: Getting Started with Excel Excel 2010 Getting Started with Excel Introduction Page 1 Excel is a spreadsheet program that allows you to store, organize, and analyze information. In this lesson,

More information

Excel 2016 Basics for Windows

Excel 2016 Basics for Windows Excel 2016 Basics for Windows Excel 2016 Basics for Windows Training Objective To learn the tools and features to get started using Excel 2016 more efficiently and effectively. What you can expect to learn

More information

BusinessObjects Frequently Asked Questions

BusinessObjects Frequently Asked Questions BusinessObjects Frequently Asked Questions Contents Is there a quick way of printing together several reports from the same document?... 2 Is there a way of controlling the text wrap of a cell?... 2 How

More information

Budget Exercise for Intermediate Excel

Budget Exercise for Intermediate Excel Budget Exercise for Intermediate Excel Follow the directions below to create a 12 month budget exercise. Read through each individual direction before performing it, like you are following recipe instructions.

More information

Microsoft Excel 2010 Basics

Microsoft Excel 2010 Basics Microsoft Excel 2010 Basics Starting Word 2010 with XP: Click the Start Button, All Programs, Microsoft Office, Microsoft Excel 2010 Starting Word 2010 with 07: Click the Microsoft Office Button with the

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

Section 1 Microsoft Excel Overview

Section 1 Microsoft Excel Overview Course Topics: I. MS Excel Overview II. Review of Pasting and Editing Formulas III. Formatting Worksheets and Cells IV. Creating Templates V. Moving and Navigating Worksheets VI. Protecting Sheets VII.

More information

Creating Web Pages with SeaMonkey Composer

Creating Web Pages with SeaMonkey Composer 1 of 26 6/13/2011 11:26 PM Creating Web Pages with SeaMonkey Composer SeaMonkey Composer lets you create your own web pages and publish them on the web. You don't have to know HTML to use Composer; it

More information

B.V. Patel Institute of Business Management, Computer & Information Technology, Uka Tarsadia University : Advanced Applications of MS-Office

B.V. Patel Institute of Business Management, Computer & Information Technology, Uka Tarsadia University : Advanced Applications of MS-Office Unit-1 MS-WORD Answer the following. (1 mark) 1. Which submenu contains the watermark option? 2. Which is used for the Cell merge in the table? 3. Which option creates a large capital letter at the beginning

More information

6. In the last Import Wizard dialog box, click Finish. Saving Excel Data in CSV File Format

6. In the last Import Wizard dialog box, click Finish. Saving Excel Data in CSV File Format PROCEDURES LESSON 39: WKING WITH FILE FMATS Using the Compatibility Checker 2 Click Info 3 Click Check for Issues 4 Click Check Compatibility 5 Review the issues and click OK Importing a File 1 Click the

More information

Status Bar: Right click on the Status Bar to add or remove features.

Status Bar: Right click on the Status Bar to add or remove features. Excel 2013 Quick Start Guide The Excel Window File Tab: Click to access actions like Print, Save As, etc. Also to set Excel options. Ribbon: Logically organizes actions onto Tabs, Groups, and Buttons to

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

How to Mail Merge PDF Documents

How to Mail Merge PDF Documents How to Mail Merge PDF Documents A step-by-step guide to creating personalized documents using AutoMailMerge plug-in for Adobe Acrobat Table of Contents What is a mail merge?...2 What do I need to start?...2

More information

Excel 2010 Level 1: The Excel Environment

Excel 2010 Level 1: The Excel Environment Excel 2010 Level 1: The Excel Environment Table of Contents The Excel 2010 Environment... 1 The Excel Window... 1 File Tab... 1 The Quick Access Toolbar... 4 Access the Customize the Quick Access Toolbar

More information

Microsoft Excel 2013: Excel Basics June 2014

Microsoft Excel 2013: Excel Basics June 2014 Microsoft Excel 2013: Excel Basics June 2014 Description Excel is a powerful spreadsheet program. Please note that in this class we will use Excel 2010 or 2013. Learn how to create spreadsheets, enter

More information

Section 2 Customisation and Printing

Section 2 Customisation and Printing Level 6 Spreadsheet 6N4089 Section 2 Customisation and Printing Contents 1. Customise Toolbars and Create Custom Menus... 2 Recognise the Features Available on Toolbars... 2 Display or Hide the Ribbon...

More information

Microsoft Excel 2016 / 2013 Basic & Intermediate

Microsoft Excel 2016 / 2013 Basic & Intermediate Microsoft Excel 2016 / 2013 Basic & Intermediate Duration: 2 Days Introduction Basic Level This course covers the very basics of the Excel spreadsheet. It is suitable for complete beginners without prior

More information

Microsoft Excel 2010 Tutorial

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

More information

Introduction to Excel 2013

Introduction to Excel 2013 Introduction to Excel 2013 Copyright 2014, Software Application Training, West Chester University. A member of the Pennsylvania State Systems of Higher Education. No portion of this document may be reproduced

More information