How to Fix Mail-Merge Number Formatting in Word 2010

Size: px
Start display at page:

Download "How to Fix Mail-Merge Number Formatting in Word 2010"

Transcription

1 How to Fix Mail-Merge Number Formatting in Word 2010 By Rich Malloy, Tech Help Today, June 2012, updated Nov When turns into , there are no less than three ways to put things right. The Mail-Merge feature of Microsoft Word is one of my favorite parts of the program. It is extremely powerful for creating labels and customized letters, s, or reports. Once you learn how to use it, you can save countless hours of work. Unfortunately, the task of learning to master all of its idiosyncrasies can give you countless headaches. One of the perennial annoyances of Mail-Merge is its inability to format numbers from an Excel spreadsheet correctly. For example, a sales result in Excel appears as but in Word it suddenly becomes ! Fortunately, there is a way to fix this. In fact, there are three ways. We can modify the spreadsheet, modify the Mail-Merge document, or simply modify the way the two files connect to each other. Although this last approach is little known, for many users it is certainly the best. Note for users of Office 2007 and Office 2003: The steps presented here are for Office 2010, but the steps needed for older versions of Word and Excel are very similar if not identical. 1. Modify the Excel Spreadsheet The first way is to avoid the problem: In the Excel worksheet, insert a column with a formula that converts the Excel numbers or dates into a text format that is exactly the same as what you would want to appear in your Mail-Merge document. To do this, you need to use Excel s TEXT() function, which enables you to convert a number or date into its equivalent text formatted exactly the way you desire. The downside is that you need to know certain formatting codes. Although these codes are identical to those used in the Custom Number formatting feature of Excel, they are rarely seen by most Excel users. For example, the formulas TEXT(B3, "$#,##0.00") and TEXT(C5, "M/dd/yy") convert number and date data into text data (in this case, $12, and 12/01/10 ). (Tip: While you are in Excel, set these formulas in a different style, say, italic, or some unusual color to remind you that these numbers are simply text. They cannot be used in calculations.) The advantage of formatting numbers and dates as text is that text is transported from Excel into a Word Mail-Merge document unmolested. Well, almost unmolested. Formatting options such as font, size, and color do not make the trip. Rich Malloy is owner / chief consultant at Tech Help Today, a computer-consulting service based in Greenwich, CT. A seasoned veteran of the computer industry, Rich provides high-quality on-site assistance for a vast array of computer problems afflicting residential and small-business clients in Fairfield and Westchester Counties. In his spare time, he teaches as a part-time professor. Contact him at

2 Format Codes for Excel s TEXT() Function A collection of the most commonly used codes is presented below. A key thing to remember is that 0 signifies a digit that will always appear even if zero, while # specifies a digit that will appear only if it is not a leading or trailing zero. Thus, the code will ensure that the leading zero is not truncated from New Jersey postal zip codes. These codes for numbers, dates, and times can be used in the TEXT function or in Excel s Custom number formats. As an extra bonus, they can also be used in the Numeric Switches in Word Mail-Merge Fields described in the next section. Unfortunately, there is a slight difference between the way these codes work in Excel and Word in Microsoft Office In Excel, you can use either M or m for months or minutes. In almost all cases, Excel is smart enough to figure out which units you are talking about. But Word is not so smart, and you must use the capitalized letter to refer to months. Also, Excel has an additional code, MMMMM, which returns a single letter abbreviation for the month (e.g., J, F, M, A, ). Formatting Codes for the Excel TEXT() Function Code Sample Result #,##0.## 1.1 D or d 1 DD or dd 01 DDD or ddd DDDD or dddd Supplementing a spreadsheet table with a few TEXT() functions is a simple and direct approach. If you are using more than one or two these functions, however, your M Mm S or s spreadsheet soon becomes cluttered with seemingly redundant SS or ss 01 columns. Analyzing the spreadsheet becomes impossible, and H 23 there is great likelihood that you will mistakenly use a h am/pm 11 PM TEXT() function as input for a calculation, thereby yielding nonsense results. Our advice here is to put all your TEXT() functions on another worksheet, entitled something like Data for Mail Merge. Handle with Care: The ROUND() Function Instead of the TEXT() function, some users prefer to use the ROUND() function to trim off extra decimal places. As its name implies, Excel s ROUND() function will permanently round a number up or down to the number of decimal places you specify. The advantage is that the rounded number is not text and can still be used for further calculations. In many cases, the ROUND() function will work well with Mail Merge, but you may want to steer clear of it because of the following reasons: 1. The Round() function will not preserve the dollar sign or the thousands separator (comma) 2. The Round() function will truncate trailing zeros 3. The Round() function sometimes causes MailMerge to display the wrong number of decimal places. For example, a MailMerge document occasionally shows 4 decimal places when the Round() function had specified 2 or 3. Tue Tuesday M 1 MM 01 MMM MMMM Jan January YY or yy 99 YYYY or yyyy 1999 H or h 1 HH or hh 01 Rich Malloy, Page 2 of 5

3 4. In rare cases, the Round() function causes MailMerge showed a slightly different number. For example, instead of displaying , MailMerge showed Use a Numeric Switch in Word The second way to cajole Mail Merge into displaying numbers from Excel correctly is to modify the Word document. Specifically, this means applying the desired number format code to the Merge Fields in the Word document. (The merge fields basically tell the Word document which column in the Excel table has the desired data.) To apply a format to a field, you must include a numeric switch (formerly called a picture switch) in the field s field code. The first thing you have to do is to see the actual field code. Open the Mail-Merge document and click the Mailings tab at the top of the window. Be sure the Preview Results button is toggled off so that you can see the Mail-Merge fields. Then right-click a Mail-Merge field (such as «Donation») and choose the Toggle Field Code option. You should now see the actual field code for that field, which is designated by curly braces as in { MERGEFIELD Donation }. Now edit the field code by simply inserting a numeric switch code to the end of the field code, as in { MERGEFIELD Donation \# $#,##0.00 } There are many picture codes available. Here are three examples and their results: { MERGEFIELD Cost \# } { MERGEFIELD Sales \# $### } $ 15 { MERGEFIELD Sales \# $#,##0.00 } $ 1, { MERGEFIELD Date \@ "MMMM d" } November 26 As you can see, the numeric switch codes are identical to the Excel formatting codes except that they are preceded by \# for numbers and \@ for dates. To see more of the codes available, refer to the table above, or see the online help for numeric switch in Word Here are some examples of how the numeric field codes work with data in a column labeled Sales in an Excel spreadsheet. Numeric Switches for Mail-Merge MergeFields Excel Data Field Code Word Result { MERGEFIELD Sales \# $#,##0.00 } $12, { MERGEFIELD Sales \# $#,##0.00 } $-12, { MERGEFIELD Sales \# $,#,##0.00 } $12, { MERGEFIELD Sales \# 0,000 } 0, { MERGEFIELD Sales \# 0.## } { MERGEFIELD Sales \# 0.## } 5. 5 { MERGEFIELD Sales \# 0.00 } { MERGEFIELD Sales \# 0.## } { MERGEFIELD Sales \# #.## } { MERGEFIELD Sales \# # ##0.00 } Rich Malloy, Page 3 of 5

4 In light of the fact that Word and Excel use the same formatting codes, we could not help wondering why they don t use the same function format. For example, why not have the MergeField function look something like: { MERGEFIELD(Donation,"$#,##0.00") } Good question. You ll have to ask Microsoft. Note: Before you start cursing me out, try to remember that when you add or change a numeric switch, the effect is not shown immediately. You either have to update the field (right-click it and choose Update Field), or click the button Mailings > Preview Results 2 or 3 times, or if you are using the Mail-Merge Wizard, you will have to go back a step and return to see the effect of your changes. (I am not making this up. Remember, only geniuses work at Microsoft. We are just not smart enough to appreciate their brilliance.) The numeric switches in merge fields work well, but I find the process very difficult to remember. ( Is it a forward slash or a back slash? ) Also, it is very easy to make a mistake. Fortunately, there is another way. 3. Use a DDE Link The above approaches are relatively simple, but if you have more than a few fields that require formatting, they can drive you into early retirement. At the very least, they require you to remember format codes that, while similar, are used in very different ways. A much more elegant and simple solution is to have Word link to the Excel workbook via a DDE (Dynamic Data Exchange) link rather than the usual, presumably non-dynamic, linking process. That sounds a little daunting, but if you can do Mail-Merge, then DDE is a piece of cake. It is a simple two-step process, and the first step enabling Word to open a file via DDE has to be done only once. To set up Word 2010 for DDE links, do the following: Click File > Options. Click the Advanced tab on the left and scroll down to the section General. Check the box labeled Confirm file format conversion on open. That s all for the first step, and you never have to do it again. From now on, your copy of Word can open up many different types of files, and can open these by different avenues, including DDE. The only side effect of the above is that every time you open a non-word file with Word, the program will give you a chance to change your mind. No problem. The second and last step has to be done each time you select a data source for your Mail-Merge operation (either in Step 3 of Word s Mail-Merge Wizard or after you press the Select Recipients button in the Mailings ribbon). Relax. It is just three additional mouse clicks: After you have chosen the data file you would like to use, a new Confirm Data Source dialog box will appear. After you choose a data file, the Confirm Data Source dialog box will appear. Rich Malloy, Page 4 of 5

5 How to Fix Number Formatting in Mail Merge The default type of link is by OLE, but that is not what you want. In the Confirm Data Source dialog box, click the check box to Show all. In the expanded list of file types, choose MS Excel Worksheets via DDE (*.xls). (Choose this even if you are using the newer Excel file format: *.xlsx.) If asked, confirm that you are selecting the Entire Spreadsheet. If you have already selected a spreadsheet for your Word document, you may have to select it again, this time via a DDE link. That s it! From now on, your Excel formatting will travel over to Word Mail-Merge documents fairly intact. One huge caveat here: Make sure that the data you want to merge are in the first sheet of your Excel workbook. (It took us two hours to finally figure out that DDE does not see anything but the first Excel worksheet.) Sounds good. So, you ask, if this is so good, why didn t the geniuses at Microsoft simply do this by default? Another good question. In previous versions of Word, there were a few minor downsides to this approach. But in my tests with Word 2010, these problems seem to have been fixed. But for how long? It is perhaps significant that the DDE link option refers only to the old *.xls file format rather than the new one used by Excel 2007 and Can Microsoft be trying to sunset this option? Let s hope not. [Some of the ideas expressed above are from C. Dudas on the Web.] To see an option for DDE linking, you have to click the check box for Show all. Rich Malloy, Page 5 of 5

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

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

More information

Create Mailing Labels from an Electronic File

Create Mailing Labels from an Electronic File Create Mailing Labels from an Electronic File Microsoft Word 2002 (XP) Electronic data requests for mailing labels will be filled by providing the requester with a commadelimited text file. When you receive

More information

Mail Merge Creating Mailing Labels 3/23/2011

Mail Merge Creating Mailing Labels 3/23/2011 Creating Mailing Labels in Microsoft Word Address data in a Microsoft Excel file can be turned into mailing labels in Microsoft Word through a mail merge process. First, obtain or create an Excel spreadsheet

More information

What is a Mail Merge?

What is a Mail Merge? NDUS Training and Documentation What is a Mail Merge? A mail merge is generally used to personalize form letters, to produce mailing labels and for mass mailings. A mail merge can be very helpful if you

More information

MICROSOFT WORD: MAIL MERGE

MICROSOFT WORD: MAIL MERGE SIU Medical Library / Department of Information and Communication Sciences MICROSOFT WORD: MAIL MERGE MICROSOFT WORD 2010 OVERVIEW Mail Merge allows you to automatically merge a list of variable information,

More information

Template Guide. HTML Email. Release 8. This template guide is an overview of how to use and customize an HTML email templates with Conga Composer.

Template Guide. HTML Email. Release 8. This template guide is an overview of how to use and customize an HTML email templates with Conga Composer. Template Guide HTML Email Release 8 This template guide is an overview of how to use and customize an HTML email templates with Conga Composer. Contact Support: support@congamerge.com Americas EMEA APAC

More information

Importing Contacts to Outlook

Importing Contacts to Outlook Importing Contacts to Outlook 1. The first step is to create a file of your contacts from the National Chapter Database. 2. You create this file under Reporting, Multiple. You will follow steps 1 and 2

More information

Intro to Excel spreadsheets

Intro to Excel spreadsheets Intro to Excel spreadsheets What are the objectives of this document? The objectives of document are: 1. Familiarize you with what a spreadsheet is, how it works, and what its capabilities are; 2. Using

More information

Microsoft Word 2013: Mail Merge

Microsoft Word 2013: Mail Merge Microsoft Word 2013: Mail Merge Mail merge is a tool which allows you to create form letters, mailing labels and envelopes by linking a main document to a data source. It is the process of combining a

More information

Explore commands on the ribbon Each ribbon tab has groups, and each group has a set of related commands.

Explore commands on the ribbon Each ribbon tab has groups, and each group has a set of related commands. Quick Start Guide Microsoft Excel 2013 looks different from previous versions, so we created this guide to help you minimize the learning curve. Add commands to the Quick Access Toolbar Keep favorite commands

More information

ACADEMIC TECHNOLOGY SUPPORT

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

More information

Microsoft Word 2010 Mail Merge (Level 3)

Microsoft Word 2010 Mail Merge (Level 3) IT Services Microsoft Word 2010 Mail Merge (Level 3) Contents Introduction...1 Creating a Data Set...2 Creating the Merge Document...2 The Mailings Tab...2 Modifying the List of Recipients...3 The Address

More information

Word 2010: Mail Merge to Email with Attachments

Word 2010: Mail Merge to Email with Attachments Word 2010: Mail Merge to Email with Attachments Table of Contents TO SEE THE SECTION FOR MACROS, YOU MUST TURN ON THE DEVELOPER TAB:... 2 SET REFERENCE IN VISUAL BASIC:... 2 CREATE THE MACRO TO USE WITHIN

More information

Mail merging emails: Word, Excel and Outlook

Mail merging emails: Word, Excel and Outlook Mail merging emails: Word, Excel and Outlook TRWD Software Used Word 2010 Excel 2010 Outlook 2010 Windows XP Revision Information Version Date Author Changes made 1.0 July 2012 Pamela Stanworth Created

More information

Using the Advanced Tier Data Collection Tool. A Troubleshooting Guide

Using the Advanced Tier Data Collection Tool. A Troubleshooting Guide Using the Advanced Tier Data Collection Tool A Troubleshooting Guide Table of Contents Mouse Click the heading to jump to the page Enable Content/ Macros... 4 Add a new student... 6 Data Entry Screen...

More information

Mastering Mail Merge. 2 Parts to a Mail Merge. Mail Merge Mailings Ribbon. Mailings Create Envelopes or Labels

Mastering Mail Merge. 2 Parts to a Mail Merge. Mail Merge Mailings Ribbon. Mailings Create Envelopes or Labels 2 Parts to a Mail Merge 1. MS Word Document (Letter, Labels, Envelope, Name Badge, etc) 2. Data Source Excel Spreadsheet Access Database / query Other databases (SQL Server / Oracle) Type in New List Mail

More information

Using AD fields in Policy Patrol

Using AD fields in Policy Patrol Policy Patrol 9 technical documentation May 20, 2013 in Policy Patrol This document describes how to enter additional Active Directory merge fields in Policy Patrol and how to convert AD fields into a

More information

Creating and Using Databases with Microsoft Access

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

More information

Indiana County Assessor Association Excel Excellence

Indiana County Assessor Association Excel Excellence Indiana County Assessor Association Excel Excellence Basic Excel Data Analysis Division August 2012 1 Agenda Lesson 1: The Benefits of Excel Lesson 2: The Basics of Excel Lesson 3: Hands On Exercises Lesson

More information

Six Steps to Completing a Mail-Merge

Six Steps to Completing a Mail-Merge Six Steps to Completing a Mail-Merge Mail merging means to plug data from an address table into form letters, e-mail messages, envelopes, address labels, or a directory (a list or catalog, for example).

More information

Mail Merges, Labels and Email Message Merges in Word 2007 Contents

Mail Merges, Labels and Email Message Merges in Word 2007 Contents Mail Merges, Labels and Email Message Merges in Word 2007 Contents Introduction to Mail Merges... 2 Mail Merges Using the Mail Merge Wizard... 3 Creating the Main Document... 3 Selecting the Data Source...

More information

As in the example above, a Budget created on the computer typically has:

As in the example above, a Budget created on the computer typically has: Activity Card Create a How will you ensure that your expenses do not exceed what you planned to invest or spend? You can create a budget to plan your expenditures and earnings. As a family, you can plan

More information

Introduction To Microsoft Office Excel 2007. Bob Booth July 2008 AP-Excel8

Introduction To Microsoft Office Excel 2007. Bob Booth July 2008 AP-Excel8 Introduction To Microsoft Office Excel 2007. Bob Booth July 2008 AP-Excel8 University of Sheffield Contents 1. INTRODUCTION... 3 2. OVERVIEW OF SPREADSHEETS... 3 3. GETTING STARTED... 4 3.1 STARTING EXCEL

More information

MAIL MERGE MADE EASY A STEP-BY-STEP GUIDE FOR LABELS OR EMAIL MERGES

MAIL MERGE MADE EASY A STEP-BY-STEP GUIDE FOR LABELS OR EMAIL MERGES MAIL MERGE MADE EASY A STEP-BY-STEP GUIDE FOR LABELS OR EMAIL MERGES WHY MAIL MERGE? Labels: Mail merge in Office lets you convert your contact list data into a sheet of mailing labels, with complete control

More information

Getting Started with Excel 2008. Table of Contents

Getting Started with Excel 2008. Table of Contents Table of Contents Elements of An Excel Document... 2 Resizing and Hiding Columns and Rows... 3 Using Panes to Create Spreadsheet Headers... 3 Using the AutoFill Command... 4 Using AutoFill for Sequences...

More information

Migrating to Excel 2010 from Excel 2003 - Excel - Microsoft Office 1 of 1

Migrating to Excel 2010 from Excel 2003 - Excel - Microsoft Office 1 of 1 Migrating to Excel 2010 - Excel - Microsoft Office 1 of 1 In This Guide Microsoft Excel 2010 looks very different, so we created this guide to help you minimize the learning curve. Read on to learn key

More information

Top 15 All-Time Excel Hints & Tips

Top 15 All-Time Excel Hints & Tips Top 15 All-Time Excel Hints & Tips Even with new versions of Excel, many hints and tips continue to provide great value to Excel users. Now, combine that with the new features of Excel, and you have a

More information

Microsoft Word 2003 Tips and Tricks

Microsoft Word 2003 Tips and Tricks Microsoft Word 2003 Tips and Tricks Presented by Information Technology Group Institute for Advanced Study Einstein Drive Princeton, NJ 08540 (609) 734-8044 helpdesk@ias.edu Table of Contents Introduction...1

More information

Use Mail Merge to create a form letter

Use Mail Merge to create a form letter Use Mail Merge to create a form letter Suppose that you want to send a form letter to 1,000 different contacts. With the Mail Merge Manager, you can write one form letter, and then have Word merge each

More information

EXCEL 2007 VLOOKUP FOR BUDGET EXAMPLE

EXCEL 2007 VLOOKUP FOR BUDGET EXAMPLE EXCEL 2007 VLOOKUP FOR BUDGET EXAMPLE 1 The primary reports used in the budgeting process, particularly for Financial Review, are the Quarterly Financial Review Reports. These expense and revenue reports

More information

Intro to Mail Merge. Contents: David Diskin for the University of the Pacific Center for Professional and Continuing Education. Word Mail Merge Wizard

Intro to Mail Merge. Contents: David Diskin for the University of the Pacific Center for Professional and Continuing Education. Word Mail Merge Wizard Intro to Mail Merge David Diskin for the University of the Pacific Center for Professional and Continuing Education Contents: Word Mail Merge Wizard Mail Merge Possibilities Labels Form Letters Directory

More information

Microsoft Word 2007 - Mail Merge

Microsoft Word 2007 - Mail Merge Microsoft Word 2007 - Mail Merge Mail merge is a tool which allows you to create form letters, mailing labels and envelopes by linking a main document to a set of data or data source. It is the process

More information

Excel Intermediate Session 2: Charts and Tables

Excel Intermediate Session 2: Charts and Tables Excel Intermediate Session 2: Charts and Tables Agenda 1. Introduction (10 minutes) 2. Tables and Ranges (5 minutes) 3. The Report Part 1: Creating and Manipulating Tables (45 min) 4. Charts and other

More information

Converting an Excel Spreadsheet Into an Access Database

Converting an Excel Spreadsheet Into an Access Database Converting an Excel Spreadsheet Into an Access Database Tracey L. Fisher Personal Computer and Software Instructor Butler County Community College - Adult and Community Education Exceeding Your Expectations..

More information

Advanced Excel 10/20/2011 1

Advanced Excel 10/20/2011 1 Advanced Excel Data Validation Excel has a feature called Data Validation, which will allow you to control what kind of information is typed into cells. 1. Select the cell(s) you wish to control. 2. Click

More information

Using Word 2007 For Mail Merge

Using Word 2007 For Mail Merge Using Word 2007 For Mail Merge Introduction This document assumes that you are familiar with using Word for word processing, with the use of a computer keyboard and mouse and you have a working knowledge

More information

How to Design a Form Report (RTF) Output

How to Design a Form Report (RTF) Output How to Design a Form Report (RTF) Output Applicable to SIMS.net version 7.108 onwards. Permissions required You will need to be a member of any of the following user groups in System Manager to design

More information

Advanced Presentation Features and Animation

Advanced Presentation Features and Animation There are three features that you should remember as you work within PowerPoint 2007: the Microsoft Office Button, the Quick Access Toolbar, and the Ribbon. The function of these features will be more

More information

Microsoft Office Access 2007 Basics

Microsoft Office Access 2007 Basics Access(ing) A Database Project PRESENTED BY THE TECHNOLOGY TRAINERS OF THE MONROE COUNTY LIBRARY SYSTEM EMAIL: TRAININGLAB@MONROE.LIB.MI.US MONROE COUNTY LIBRARY SYSTEM 734-241-5770 1 840 SOUTH ROESSLER

More information

Using Mail Merge in Microsoft Word 2003

Using Mail Merge in Microsoft Word 2003 Using Mail Merge in Microsoft Word 2003 Mail Merge Created: 12 April 2005 Note: You should be competent in Microsoft Word before you attempt this Tutorial. Open Microsoft Word 2003 Beginning the Merge

More information

Using Mail Merge to Create Form Letters and Labels

Using Mail Merge to Create Form Letters and Labels Using Mail Merge to Create Form Letters and Labels 1. Open the word document on your floppy: Practice letter 2. Go to Tools > Mail Merge. The Mail Merger Helper appears. We are going to create form letters,

More information

Microsoft Migrating to Word 2010 from Word 2003

Microsoft Migrating to Word 2010 from Word 2003 In This Guide Microsoft Word 2010 looks very different, so we created this guide to help you minimize the learning curve. Read on to learn key parts of the new interface, discover free Word 2010 training,

More information

Microsoft Excel 2013: Macro to apply Custom Margins, Titles, Gridlines, Autofit Width & Add Macro to Quick Access Toolbar & How to Delete a Macro.

Microsoft Excel 2013: Macro to apply Custom Margins, Titles, Gridlines, Autofit Width & Add Macro to Quick Access Toolbar & How to Delete a Macro. Microsoft Excel 2013: Macro to apply Custom Margins, Titles, Gridlines, Autofit Width & Add Macro to Quick Access Toolbar & How to Delete a Macro. Do you need to always add gridlines, bold the heading

More information

USER GUIDE. Unit 2: Synergy. Chapter 2: Using Schoolwires Synergy

USER GUIDE. Unit 2: Synergy. Chapter 2: Using Schoolwires Synergy USER GUIDE Unit 2: Synergy Chapter 2: Using Schoolwires Synergy Schoolwires Synergy & Assist Version 2.0 TABLE OF CONTENTS Introductions... 1 Audience... 1 Objectives... 1 Before You Begin... 1 Getting

More information

Mail Merge Microsoft Word and Excel Queries Scott Kern Senior Consultant

Mail Merge Microsoft Word and Excel Queries Scott Kern Senior Consultant Mail Merge Microsoft Word and Excel Queries Scott Kern Senior Consultant What We ll Cover 1. Enabling database connections through Microsoft Excel 2. Accessing the data stored in the SQL Database via the

More information

IT Quick Reference Guides Performing Mail Merges in Word 2010

IT Quick Reference Guides Performing Mail Merges in Word 2010 IT Quick Reference Guides Performing Mail Merges in Word 2010 Word Guides Mail merges are useful when you want to create form letters or other documents sent to or drawing information from multiple customers.

More information

In-Depth Guide Advanced Spreadsheet Techniques

In-Depth Guide Advanced Spreadsheet Techniques In-Depth Guide Advanced Spreadsheet Techniques Learning Objectives By reading and completing the activities in this chapter, you will be able to: Create PivotTables using Microsoft Excel Create scenarios

More information

Mail Merge: Create Mailing Labels Using Excel Data and Filtering the Contents in the Data

Mail Merge: Create Mailing Labels Using Excel Data and Filtering the Contents in the Data Mail Merge: Create Mailing Labels Using Excel Data and Filtering the Contents in the Data Prior to starting this, please save the.csv file that you exported as an excel file (example: xxxx.csv will now

More information

Mail Merge Tutorial (for Word 2003-2007) By Allison King Spring 2007 (updated Fall 2007)

Mail Merge Tutorial (for Word 2003-2007) By Allison King Spring 2007 (updated Fall 2007) Mail Merge Tutorial (for Word 2003-2007) By Allison King Spring 2007 (updated Fall 2007) What is mail merge? You've probably heard it mentioned around the office or at an interview (especially for a temp

More information

Introduction to Microsoft Excel 2010

Introduction to Microsoft Excel 2010 Introduction to Microsoft Excel 2010 Screen Elements Quick Access Toolbar The Ribbon Formula Bar Expand Formula Bar Button File Menu Vertical Scroll Worksheet Navigation Tabs Horizontal Scroll Bar Zoom

More information

Microsoft Excel Basics

Microsoft Excel Basics COMMUNITY TECHNICAL SUPPORT Microsoft Excel Basics Introduction to Excel Click on the program icon in Launcher or the Microsoft Office Shortcut Bar. A worksheet is a grid, made up of columns, which are

More information

ITS Training Class Charts and PivotTables Using Excel 2007

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

More information

Using Excel for Business Analysis: A Guide to Financial Modelling Fundamentals

Using Excel for Business Analysis: A Guide to Financial Modelling Fundamentals Excel 2003 Instructions Using Excel for Business Analysis: A Guide to Financial Modelling Fundamentals contains extensive instructions for using Excel 2010 and Excel for Mac 2011. There are a few instances

More information

AARP Tax-Aide Helpful Hints for Using the Volunteer Excel Expense Form and Other Excel Documents

AARP Tax-Aide Helpful Hints for Using the Volunteer Excel Expense Form and Other Excel Documents AARP Tax-Aide Helpful Hints for Using the Volunteer Excel Expense Form and Other Excel Documents This document is designed to give you information to help you perform Excel file functions associated with

More information

Create Mailing Labels Using Excel Data (Mail Merge)

Create Mailing Labels Using Excel Data (Mail Merge) Create Mailing Labels Using Excel Data (Mail Merge) This quick guide will show you how to create mailing labels from an Excel spreadsheet. To print mailing labels, you ll import Excel spreadsheet data

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 Table of Contents What is a mail merge?... 2 What do I need to start?... 2 Step 1: How to create a PDF document?...

More information

Intermediate. Microsoft Excel 2007- Tables and Printing

Intermediate. Microsoft Excel 2007- Tables and Printing John W. Jacobs Technology Center 450 Exton Square Parkway Exton, PA 19341 610.280.2666 ccljtc@ccls.org www.ccls.org Facebook.com/ChesterCountyLibrary Intermediate Microsoft Excel 2007- Tables and Printing

More information

CONTENTS. Introduction... 3. Outlook at a glance... 3. Configure Outlook 2010 on-campus... 3. Creating Folders... 4. Sorting Emails...

CONTENTS. Introduction... 3. Outlook at a glance... 3. Configure Outlook 2010 on-campus... 3. Creating Folders... 4. Sorting Emails... OFFICE OF INFORMATION TECHNOLOGY Academic Technology Unit Microsoft Outlook 2010 Basics Workbook CONTENTS Introduction... 3 Outlook at a glance... 3 Configure Outlook 2010 on-campus... 3 Creating Folders...

More information

LEGISLATOR DATABASE. September, 2012

LEGISLATOR DATABASE. September, 2012 LEGISLATOR DATABASE September, 2012 1. INTRODUCTION 2. LIST OF QUERIES 3. FIELDS 4. QUERY DESCRIPTIONS 5. USING THE LEGISLATOR DATABASE QUERIES 6. DOWNLOADING THE LEGISLATOR DATABASE FROM THE CGA HOME

More information

The first thing to do is choose if you are creating a mail merge for printing or an e-mail merge for distribution over e-mail.

The first thing to do is choose if you are creating a mail merge for printing or an e-mail merge for distribution over e-mail. Create a mail or e-mail merge Use mail or e-mail merge when you want to create a large number of documents that are mostly identical but include some unique information. For example, you can use mail merge

More information

Microsoft Office. Mail Merge in Microsoft Word

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

More information

How To Understand The Basic Concepts Of A Database And Data Science

How To Understand The Basic Concepts Of A Database And Data Science Database Concepts Using Microsoft Access lab 9 Objectives: Upon successful completion of Lab 9, you will be able to Understand fundamental concepts including database, table, record, field, field name,

More information

Outlook Email. User Guide IS TRAINING CENTER. 833 Chestnut St, Suite 600. Philadelphia, PA 19107 215-503-7500

Outlook Email. User Guide IS TRAINING CENTER. 833 Chestnut St, Suite 600. Philadelphia, PA 19107 215-503-7500 Outlook Email User Guide IS TRAINING CENTER 833 Chestnut St, Suite 600 Philadelphia, PA 19107 215-503-7500 This page intentionally left blank. TABLE OF CONTENTS Getting Started... 3 Opening Outlook...

More information

Excel 2007 A Beginners Guide

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

More information

ACCESS 2007. Importing and Exporting Data Files. Information Technology. MS Access 2007 Users Guide. IT Training & Development (818) 677-1700

ACCESS 2007. Importing and Exporting Data Files. Information Technology. MS Access 2007 Users Guide. IT Training & Development (818) 677-1700 Information Technology MS Access 2007 Users Guide ACCESS 2007 Importing and Exporting Data Files IT Training & Development (818) 677-1700 training@csun.edu TABLE OF CONTENTS Introduction... 1 Import Excel

More information

Using Microsoft Excel to Manage and Analyze Data: Some Tips

Using Microsoft Excel to Manage and Analyze Data: Some Tips Using Microsoft Excel to Manage and Analyze Data: Some Tips Larger, complex data management may require specialized and/or customized database software, and larger or more complex analyses may require

More information

FrontStream CRM Import Guide Page 2

FrontStream CRM Import Guide Page 2 Import Guide Introduction... 2 FrontStream CRM Import Services... 3 Import Sources... 4 Preparing for Import... 9 Importing and Matching to Existing Donors... 11 Handling Receipting of Imported Donations...

More information

Q&As: Microsoft Excel 2013: Chapter 2

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

More information

WEBFOCUS QUICK DATA FOR EXCEL

WEBFOCUS QUICK DATA FOR EXCEL WEBFOCUS QUICK DATA FOR EXCEL BRIAN CARTER INFORMATION BUILDERS SUMMIT 2008 USERS CONFERENCE JUNE 2008 Presentation Abstract: Even with the growing popularity and evolvement of Business Intelligence products

More information

INTRODUCTION TO CONSTANT CONTACT Email Marketing Program

INTRODUCTION TO CONSTANT CONTACT Email Marketing Program INTRODUCTION TO CONSTANT CONTACT Email Marketing Program Technology Learning Centers Bucks County Community College www.bucks.edu/tlc Step 1: Log In To access Constant Contact, open a browser such as Internet

More information

Microsoft Excel 2013: Headers and Footers

Microsoft Excel 2013: Headers and Footers Microsoft Excel 2013: Headers and Footers You can add headers or footers at the top or bottom of a printed worksheet. For example, you might create a footer that has page numbers, along with the date and

More information

Excel macros made easy

Excel macros made easy IT Training Excel macros made easy Jane Barrett, IT Training & Engagement Team Information System Services Version 1.1 Scope Learning outcomes Understand the concept of what a macro is and what it does.

More information

Crystal Reports Designer

Crystal Reports Designer Overview This document is intended to assist you in creating or modifying a report in the Crystal Reports Designer, Seagate Info Report Designer, or the Design tab of Seagate Analysis that exports successfully

More information

Using Microsoft Office to Manage Projects

Using Microsoft Office to Manage Projects (or, Why You Don t Need MS Project) Using Microsoft Office to Manage Projects will explain how to use two applications in the Microsoft Office suite to document your project plan and assign and track tasks.

More information

WHAT S NEW IN MS EXCEL 2013

WHAT S NEW IN MS EXCEL 2013 Contents Excel... 1 Filling empty cells using Flash Fill... 1 Filtering records using a Timeline... 2 Previewing with Quick Analysis... 4 Using Chart Advisor recommendations... 5 Finding errors and issues

More information

Mail Merge. Course Description. Objectives: Design a Main Document. Design a Data Source. Directories. Merge the Main Document with the Data

Mail Merge. Course Description. Objectives: Design a Main Document. Design a Data Source. Directories. Merge the Main Document with the Data Mail Merge Course Description The Mail Merge feature allows you to combine items from a data source into a document. This allows you to create form letters, mailing labels, envelopes, etc. You also have

More information

Using Microsoft Access Databases

Using Microsoft Access Databases Using Microsoft Access Databases Print this document to use as a reference while you work through this course. Open Access, and follow all directions to familiarize yourself with the program. Database

More information

How to Use Excel for Law Firm Billing

How to Use Excel for Law Firm Billing How to Use Excel for Law Firm Billing FEATURED FACULTY: Staci Warne, Microsoft Certified Trainer (MCT) (801) 463-1213 computrainhelp@hotmail.com Staci Warne, Microsoft Certified Trainer (MCT) Staci Warne

More information

Microsoft Excel 2010. Understanding the Basics

Microsoft Excel 2010. Understanding the Basics Microsoft Excel 2010 Understanding the Basics Table of Contents Opening Excel 2010 2 Components of Excel 2 The Ribbon 3 o Contextual Tabs 3 o Dialog Box Launcher 4 o Quick Access Toolbar 4 Key Tips 5 The

More information

Module One: Getting Started... 6. Opening Outlook... 6. Setting Up Outlook for the First Time... 7. Understanding the Interface...

Module One: Getting Started... 6. Opening Outlook... 6. Setting Up Outlook for the First Time... 7. Understanding the Interface... 2 CONTENTS Module One: Getting Started... 6 Opening Outlook... 6 Setting Up Outlook for the First Time... 7 Understanding the Interface...12 Using Backstage View...14 Viewing Your Inbox...15 Closing Outlook...17

More information

Microsoft Using an Existing Database Amarillo College Revision Date: July 30, 2008

Microsoft Using an Existing Database Amarillo College Revision Date: July 30, 2008 Microsoft Amarillo College Revision Date: July 30, 2008 Table of Contents GENERAL INFORMATION... 1 TERMINOLOGY... 1 ADVANTAGES OF USING A DATABASE... 2 A DATABASE SHOULD CONTAIN:... 3 A DATABASE SHOULD

More information

How to Create a Spreadsheet With Updating Stock Prices Version 3, February 2015

How to Create a Spreadsheet With Updating Stock Prices Version 3, February 2015 How to Create a Spreadsheet With Updating Stock Prices Version 3, February 2015 by Fred Brack In December 2014, Microsoft made changes to their online portfolio management services, changes widely derided

More information

Reporting Tips and Tricks

Reporting Tips and Tricks Chapter 16 Reporting Tips and Tricks Intuit Statement Writer New for 2009! Company Snapshot New for 2009! Using the Report Center Reporting Preferences Modifying Reports Report Groups Memorized Reports

More information

Programming in Access VBA

Programming in Access VBA PART I Programming in Access VBA In this part, you will learn all about how Visual Basic for Applications (VBA) works for Access 2010. A number of new VBA features have been incorporated into the 2010

More information

Instructions: Using Mail Merge in Word to Send E mails via Outlook

Instructions: Using Mail Merge in Word to Send E mails via Outlook Instructions: Using Mail Merge in Word to Send E mails via Outlook The mail merge tool in Word can be used to quickly and easily send personalized e mails via your Outlook e mail application to individuals

More information

Spreadsheet - Introduction

Spreadsheet - Introduction CSCA0102 IT and Business Applications Chapter 6 Spreadsheet - Introduction Spreadsheet A spreadsheet (or spreadsheet program) is software that permits numerical data to be used and to perform automatic

More information

Commonly Used Excel Formulas

Commonly Used Excel Formulas Microsoft Excel 2007 Advanced Formulas Windows XP Look Up Values in a List of Data: Commonly Used Excel Formulas Let's say you want to look up an employee's phone extension by using their badge number

More information

Spreadsheet User Guide. First-Year Course

Spreadsheet User Guide. First-Year Course Spreadsheet User Guide with Solutions First-Year Course For Use With Glencoe Accounting: Online Learning Center Bothell, WA Chicago, IL Columbus, OH New York, NY CONTENTS Section 1 Introduction 1 Section

More information

ArcGIS Tutorial: Adding Attribute Data

ArcGIS Tutorial: Adding Attribute Data ArcGIS Tutorial: Adding Attribute Data Introduction A common need in GIS is to map characteristics, or attributes, of different geographic areas. These maps are called thematic maps. Examples of thematic

More information

Making a Web Page with Microsoft Publisher 2003

Making a Web Page with Microsoft Publisher 2003 Making a Web Page with Microsoft Publisher 2003 The first thing to consider when making a Web page or a Web site is the architecture of the site. How many pages will you have and how will they link to

More information

Analyzing Data Using Excel

Analyzing Data Using Excel Analyzing Data Using Excel What you will do: Create a spreadsheet Use formulas and basic formatting Import text files Save worksheets as web pages Add interactivity to web worksheets Use pivot tables Create

More information

HOUR 9. Formatting Worksheets to Look Great

HOUR 9. Formatting Worksheets to Look Great HOUR 9 Formatting Worksheets to Look Great Excel makes it easy to make even simple worksheets look professional. AutoFormat quickly formats your worksheet within the boundaries you select. If you want

More information

Handout: How to Use Excel 2010

Handout: How to Use Excel 2010 How to Use Excel 2010 Table of Contents THE EXCEL ENVIRONMENT... 4 MOVE OR SCROLL THROUGH A WORKSHEET... 5 USE THE SCROLL BARS TO MOVE THROUGH A WORKSHEET... 5 USE THE ARROW KEYS TO MOVE THROUGH A WORKSHEET...

More information

Mail Merge (Microsoft Office 2010)

Mail Merge (Microsoft Office 2010) Mail Merge (Microsoft Office 2010) Microsoft Word s 2010 mail merge feature allows users to create one document, such as a customer appreciation letter, promotional letter, or an employee appreciation

More information

Creating an Excel Spreadsheet for Mail Merge. Excel Spreadsheet Mail Merge. 1 of 9 Design & Print Offline: Mail Merge

Creating an Excel Spreadsheet for Mail Merge. Excel Spreadsheet Mail Merge. 1 of 9 Design & Print Offline: Mail Merge Creating an Excel Spreadsheet for Mail Merge Excel Spreadsheet Mail Merge 1 of 9 Creating an Excel Database for a Mail Merge 1. To create a database for a mail merge you will first need to open Microsoft

More information

Excel 2003: Ringtones Task

Excel 2003: Ringtones Task Excel 2003: Ringtones Task 1. Open up a blank spreadsheet 2. Save the spreadsheet to your area and call it Ringtones.xls 3. Add the data as shown here, making sure you keep to the cells as shown Make sure

More information

Integrating Microsoft Word with Other Office Applications

Integrating Microsoft Word with Other Office Applications Integrating Microsoft Word with Other Office Applications The Learning Center Staff Education 257-79226 http://www.mc.uky.edu/learningcenter/ Copyright 2006 Objectives After completing this course, you

More information

Basic Excel Handbook

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

More information

Charting LibQUAL+(TM) Data. Jeff Stark Training & Development Services Texas A&M University Libraries Texas A&M University

Charting LibQUAL+(TM) Data. Jeff Stark Training & Development Services Texas A&M University Libraries Texas A&M University Charting LibQUAL+(TM) Data Jeff Stark Training & Development Services Texas A&M University Libraries Texas A&M University Revised March 2004 The directions in this handout are written to be used with SPSS

More information

Sage Intelligence Report Designer Add-In

Sage Intelligence Report Designer Add-In Sage Intelligence Report Designer Add-In Q: What is Sage Intelligence Reporting? A: Sage Intelligence Reporting helps you to easily control, automate and analyze your data to make better informed decision,

More information