Wednesday, February 28, 2018

Remove borders from a table in Word 2016 for Mac

Remove borders from a table in Word 2016 for Mac

When you insert or draw a table, Word automatically adds black borders. You can change the borders or remove them.

Remove all borders

  1. Click in any cell to show the table move handle Four-headed arrow handle in the upper left corner of the table.

  2. Click the table move handle Four-headed arrow handle to select the table and show the Table Design tab.

  3. On the Table Design tab, click the arrow next to Borders and then click No Border .

    Tip: Be sure to click Borders not Border Styles.

    The No Border option is highlighted

Remove only some borders

  1. Select the cells where you want to remove some borders.

  2. On the Table Design tab, click the arrow next to Borders and select the options you want.

    Tip: Be sure to click Borders not Border Styles.

    The border options are shown for the table design

Remove individual borders

  1. Click in any cell to show the Table Design tab.

  2. On the Table Design tab, in the Line Style box, click No Border. Your cursor will become a paintbrush you can use to erase individual borders.

    No Border is highlighted in Line Styles

  3. Click the borders you want to erase.

  4. When you're done, on the Table Design tab, click Border Painter to change the paintbrush back to a cursor.

Use parameters in queries, forms, and reports

Use parameters in queries, forms, and reports

When you want a query in Access to ask for input every time that you run it, you can create a parameter query.

You can also create a form to collect parameter values that will be used to restrict the records returned for queries, forms or reports. This article explains how to use forms to enhance your use of parameters in queries, forms, and reports.

In this article

Overview

Use parameters in queries

Specify parameter data types

Create a form that collects parameters

Create a form that collects parameters for a report

Overview

You can use criteria in a parameter query in Access to restrict the set of records that the query returns. You may find the dialog boxes that are provided by a parameter query to be insufficient for your purposes. In such cases, you can create a form that better meets your parameter collection needs. This article explains how to create a form that collects query and report parameters. This article assumes that you are familiar with creating queries and defining parameters in queries. At a minimum, you should be familiar with creating a select query before you continue.

This article provides examples of using parameters in queries. It does not provide a comprehensive reference for specifying criteria.

Use parameters in queries

Using a parameter in a query is as easy as creating a query that uses criteria. You can design a query to prompt you for one piece of information, such as a part number, or for more than one piece of information, such as two dates. For each parameter, a parameter query displays a separate dialog box that prompts you for a value for that parameter.

Add a parameter to a query

  1. Create a select query, and then open the query in Design view.

  2. In the Criteria row of a field for which you want a parameter applied, type the text that you want the parameter dialog box to display, enclosed in square brackets, for example:

    [Start Date]

    When you run the parameter query, the prompt appears in a dialog box without the square brackets.

    You can also use an expression with your parameter prompts, for example:

    Between [Start Date] And [End Date]

    Note: A separate dialog box appears for each parameter prompt. In the second example, two dialog boxes appear: one for Start Date and one for End Date.

  3. Repeat step 2 for each field that you want to add parameters to.

You can use the preceding steps to add a parameter to any one of the following types of queries: Select, Crosstab, Append, Make-table, or Update.

You can also add a parameter to a union query by following these steps:

  1. Open the union query in SQL view.

  2. Add a WHERE clause that contains each of the fields for which you want to prompt for a parameter.

    If a WHERE clause already exists, check to see whether the fields for which you want to use a parameter prompt are already in the clause, and if not, add them.

  3. Instead of using a criterion in the WHERE clause, use a parameter prompt.

Specify parameter data types

You can also specify what type of data a parameter should accept. You can specify the data type for any parameter, but it is especially important to specify the data type for numeric, currency, or date/time data. When you specify the data type that a parameter should accept, users see a more helpful error message if they enter the wrong type of data, such as entering text when currency is expected.

Note: If a parameter is configured to accept text data, any input is interpreted as text, and no error message is displayed.

To specify the data type for parameters in a query, follow these steps:

  1. With the query open in Design view, on the Design tab, in the Show/Hide group, click Parameters.

  2. In the Query Parameters dialog box, in the Parameter column, type the prompt for each parameter for which you want to specify the data type. Make sure that each parameter matches the prompt that you use in the Criteria row of the query design grid.

  3. In the Data Type column, select the data type for each parameter.

Create a form that collects parameters

Although parameter queries feature a built-in dialog box that collects parameters, they provide only basic functionality. By using a form to collect parameters, you gain the following features:

  • The ability to use data-type-specific controls, such as calendar controls for dates.

  • Persistence of the collected parameters, so that you can use them with more than one query.

  • The ability to provide a combo box or list box for parameter collection, which lets you pick from a list of available data values.

  • The ability to provide controls for other functions, such as opening or refreshing a query.

The following video shows how you can create a simple form to collect parameters for a query instead of using the dialog boxes normally associated with parameter queries.

Your browser does not support video. Install Microsoft Silverlight, Adobe Flash Player, or Internet Explorer 9.

Create a form that collects parameters for a report

There are several ways you could approach this scenario, but we'll show just one technique using mostly macros. Follow these steps to create a form that collects parameters for a report.

Step 1: Create a form that accepts input

Step 2: Create a code module to check whether the parameter form is already loaded

Step 3: Create a macro that controls the form and report

Step 4: Add OK and Cancel command buttons to the form

Step 5: Use the form data as query criteria

Step 6: Add the macro actions to the report events

Step 7: Try it out

Step 1: Create a form that accepts input

  1. On the Create tab, in the Forms group, click Form Design.

  2. In Design view, press F4 to display the property sheet and then specify the form properties, as shown in the following table.

    Property

    Setting

    Caption

    Enter the name that you want to appear in the title bar of the form.

    Default View

    Single Form

    Allow Form View

    Yes

    Allow Datasheet View

    No

    Allow PivotTable View

    No

    Allow PivotChart View

    No

    Scroll Bars

    Neither

    Record Selectors

    No

    Navigation Buttons

    No

    Border Style

    Dialog

  3. For each parameter that you want the form to collect, click Text Box in the Controls group on the Design tab.

  4. Set the properties for the text boxes, as shown in the following table.

    Property

    Setting

    Name

    Enter a name that describes the parameter, for example, StartDate.

    Format

    Choose a format that reflects the data type of the parameter field. For example, select General Date for a date field.

  5. Save the form and give it a name, such as frmCriteria.

Step 2: Create a code module to check whether the parameter form is already loaded

  1. On the Create tab in the Macros & Code group, click Module. Note, if you're using Access 2007, on the Create tab, in the Other group, click Module.

    A new module opens in the Visual Basic Editor.

  2. Type or paste the following code into the Visual Basic Editor:

    Function IsLoaded(ByVal strFormName As String) As Boolean
    Dim oAccessObject As AccessObject
    Set oAccessObject = CurrentProject.AllForms(strFormName)
    If oAccessObject.IsLoaded Then
    If oAccessObject.CurrentView <> acCurViewDesign Then
    IsLoaded = True
    End If
    End If
    End Function
  3. Save the module with a unique name, and then close the Visual Basic Editor.

Step 3: Create a macro that controls the form and report

Using the submacro features of Access macros we can define all the needed steps we need to make in a single macro. We'll create four submacros - Open Dialog, Close Dialog, OK, and Cancel - to control the various tasks needed for this procedure. Using the screenshot below as a guide, create a new macro with the following submacros and actions. Note, for this example, our parameter form is called frmCriteria. Adjust your macro to match the name of the form you created earlier. You'll also need to be sure to click Show All Actions on the Design tab in order to view all macro actions.

Screenshot of an Access macro with four submacros and actions.

Save and close the macro. Give the macro a name, for example, Date Range Macro.

Step 4: Add OK and Cancel command buttons to the form

  1. Reopen the parameter form you created earlier in Design view.

  2. Ensure that Use Control Wizards in the Controls group on the Design tab is not selected.

  3. On the Design tab, in the Controls group, click Button.

  4. Position the pointer below the text boxes on your form, and then drag to create an OK command button.

  5. If the property sheet is not visible, press F4 to display it.

  6. Set the OK button's properties, as shown in the following table.

    Property

    Setting

    Name

    OK

    Caption

    OK

    Default

    Yes

    OnClick

    Enter the name of the macro, for example, Date Range Macro.OK.

  7. Create a Cancel command button and set its properties, as shown in the following table.

    Property

    Setting

    Name

    Cancel

    Caption

    Cancel

    OnClick

    Enter the name of the macro, for example, Date Range Macro.Cancel.

  8. Save and close the form.

Step 5: Use the form data as query criteria

  1. Open the query you created earlier in Design view.

  2. Enter the criteria for the data. Use the Forms object, the name of the form, and the name of the control:

    • For example, in an Access database (.accdb or .mdb), for a form named frmCriteria, you use the following expression to refer to controls named Start Date and End Date in the query:

      Between [Forms]![frmCriteria]![Start Date] And [Forms]![frmCriteria]![End Date]

Step 6: Add the macro actions to the report events

  1. Open the report that you're wanting to use in Design view.

  2. If the property sheet is not visible, press F4 to display it.

  3. Make sure the Record Source property of the report is using the parameter query you defined earlier.

  4. Set these two additional report properties, as shown in the following table.

    Property

    Setting

    OnOpen

    Enter the name of the macro, for example, Date Range Macro.Open Dialog.

    OnClose

    Enter the name of the macro, for example, Date Range Macro.Close Dialog.

    In the Open event of the report, Access will run the actions defined in the Open Dialog submacro of the Date Range Macro object. Similarly, when you close the report, Access will run the actions defined in the Close Dialog submacro of the Date Range Macro object.

  5. Save and close the report.

Step 7: Try it out

Now that you're created all of the Access objects, it's time to try it out. Open your report in Report View or Print Preview and notice that before Access displays the report, your parameter form opens in dialog mode. Enter the criteria needed into the text boxes you created previously and then click the OK command button on the form. Access then hides the form (Visible = No) and opens the report with only data that matches your criteria. This works because the parameter query that the report is based on can read the values in the controls on the hidden form. When you close the report, Access will also close the parameter form.

Top of Page

Create and print labels

Create and print labels

Word can print a single label, a sheet of identical labels, or a batch of different labels. Word lays out label contents in a table that's designed to match the dimensions of the commercially made labels that you purchased.

For a single label or sheet of identical labels, you type what you want once, and Word positions it in a table cell for each label you want to print.

For a batch of different labels, we recommend starting your document with a label template. To find one, go to the File tab in Word, click New, and then in the search box, type labels and press Enter. Or, in your browser, see the label templates at templates.office.com.

Tip: You might want a batch of labels that contains information from a data source, like names and addresses in a spreadsheet. In that case, your best bet is to make labels with mail merge.

If you want to make return address labels, find more information in Create return address labels.

  1. Click Mailings > Labels.

    Create group on the Mailings tab

  2. Click Options.

  3. In the Label vendors list, click the company that made your labels, or the company and page size.

    List of label vendors_C3_2017108232840

  4. Under Product number, click the number that matches the one on your package of labels.

    If you don't see your product number, you can set up a custom label. Scroll down for those instructions.

    Note: If you're using a continuous-feed printer, you'll have a different list of product numbers. Be sure to click Continuous-feed printers under Printer information, so you'll see that list.

  5. Click OK.

  6. Type an address or other information in the Address box (text only).

    The Envelopes and Labels setup options

    To create a label for an address in an electronic address book installed on your computer, click the Insert Address button.

    The Select Name button on the Mailings tab

  7. To change the formatting, select the text, right click, and then click Font or Paragraph on the shortcut menu. Make your changes and then click OK.

  8. Under Print, click Full page of the same label or click Single label.

    If you're printing one label, enter its location in the Row and Column boxes. For example, if you have a 3 by 10 grid of labels on your sheet, but only the last label's left, type 10 in the Row box and 3 in the column box.

  9. Before you print, place your label sheets in the printer.

    To print the labels without saving your setup, click Print.

    To preview, or to save the labels in a document you can use again, click New Document. Save the document, or print the labels by clicking File > Print and clicking the Print button.

Tip: If it is your first time to use the label product that you have selected with your printer, first print your labels to a regular sheet of paper to see if the position of text aligns with an actual sheet of labels.

If you aren't using an address list or other data source, you can type each label. But if you want to add a custom graphic to your labels, that's easier to set up using mail merge.

  1. Click Mailings > Labels.

    Create group on the Mailings tab

  2. In the Envelopes and Labels box, click Options.

  3. In the Label vendors list, click the company that made your labels, or the company and page size. 

    List of label vendors_C3_2017108233018

  4. Under Product number, click the number that matches the one on your labels package.

    If you don't see your product number, you can set up a custom label. Scroll down for those instructions.

    Note: If you're using a continuous-feed printer, you'll have a different list of product numbers. Be sure to click Continuous-feed printers under Printer information, so you'll see that list.

  5. Click OK, and then click New Document.

    The Envelopes and Labels setup options

  6. Word opens a new document that contains a table with dimensions that match that label product.
    Word creates a table with dimensions that match your selected label product._C3_2017108234838

  7. If the new document does not display gridlines—and you would like to see them—choose the Layout tab, and then choose View Gridlines to toggle display of gridlines on and off.

  8. Type the information you want in each label.

  9. Before you print, place your label sheets in the printer. Then click File > Print and click the Print button.

Tip: If it is your first time to use the label product that you have selected with your printer, first print your labels to a regular sheet of paper to see if the position of text aligns with an actual sheet of labels.

If the list of product numbers doesn't include the product number on your package of labels, you can set up a custom label. Here's how:

  1. Carefully measure the labels on the sheet you have (don't just go by the size the manufacturer gives you). Note the measurements and how many labels fit on a single sheet.

  2. Click Mailings > Labels > Options.

  3. Check that your printer type is correct. If you have a continuous-feed printer, you'll see a different list of options.

  4. In the Product number list, click a label type similar in size to your labels. Look under Label information to see whether the selected label is close to your label.

  5. Click Details, and compare the label dimensions and the number of labels per sheet or the number of columns on the label form.

  6. Do one of the following:

    • If the dimensions and label layout match those of your labels, use the selected label.

    • If not, go to the next step.

  7. In the Label Options box, click the printer type, and click New Label.

  8. Type a name in the Label name box, enter your label's height, width, and pitch (which means the label plus the margin), and then click OK.

  9. Click OK again to get back to the Envelopes and Labels box. From here, you can create and print your custom label by following steps 6-9 in the first section of this article, "Set up and print one label or a page of the same label."

  1. Start Word.

    A blank document opens by default. Leave it open. If you close it, the commands in the next step are not available.

  2. On the Mailings tab, in the Create group, click Labels.

    Office 2010  Ribbon

  3. In the Address box, type the text that you want.

    If you want to create a label for an address that is stored in the electronic address book that is installed on your computer, click Insert Address Button image .

  4. To change the formatting, select the text, right-click the selected text, and then click Font or Paragraph on the shortcut menu.

  5. To select the label type and other options, click Options.

  6. In the Label Options dialog box, make your choices, and then click OK.

    Label Options dialog box

    1 The type of printer that you are using to print labels

    2 The supplier that produced your label sheets

    3 The number that corresponds to the product number listed on your package of label sheets

    The product number for my label sheets doesn't match any of the choices in the Label Options dialog box

    You can still print your labels. You just have to do some customizing.

    1. Measure the labels on the sheet that you have, and note the measurements and how many labels fit on a single sheet.

      Note: Measure the labels carefully. The actual label size might be smaller than the size that is indicated by the label manufacturer. For example, a 1-by-2-inch label might actually be 15/16-inch high and 1 15/16-inches wide.

    2. In the Product number list, click a label type that is similar in size to your labels.

      If you don't see the label type that you want in the Product number list, you may be able to use another of the listed labels, or you can create a new label size.

    3. Click Details, and then compare the label dimensions and the number of labels per sheet (for labels printed on laser and ink-jet printers) or the number of columns on the label form (for labels printed on dot-matrix printers).

    4. Do one of the following:

      • If the dimensions and label layout match those of your labels, use the selected label.

      • If the dimensions and layout do not match yours, click Cancel, and continue to step 5.

    5. In the Label Options dialog box, click the printer type (either Continuous-feed printers or Page printers), and then click New Label.

    6. Type a name in the Label name box, select the height, width, margins, and other options for your label, and then click OK.

      The new label appears in the Other/Custom category. The next time you use your custom labels, be sure to select Other/Custom in the Label vendors list.

  7. After you select the options that you want, click OK.

  8. Under Print, click Single label. Then in the Row and Column boxes, enter the numbers that match the numbers of rows and columns on the label sheet for the label that you want to print.
    row and column lists in single label area in envelopes and labels dialog box with arrows pointing to labels on sheet

  9. Click Print.

  1. Start Word.

    A blank document opens by default. Leave it open. If you close it, the commands in the next step are not available.

  2. On the Mailings tab, in the Create group, click Labels.

    Office 2010  Ribbon

  3. In the Address box, type the text that you want.

    If you want to create a label for an address that is stored in the electronic address book that is installed on your computer, click Insert Address Button image .

  4. To change the formatting, select the text, right-click the selected text, and then click Font or Paragraph on the shortcut menu.

    All of the labels on the sheet will use the formatting that you specify.

  5. To select the label type and other options, click Options.

  6. In the Label Options dialog box, make your choices, and then click OK.

    Label Options dialog box

    1 The type of printer that you are using to print labels

    2 The supplier that produced your label sheets

    3 The number that corresponds to the product number listed on your package of label sheets

    The product number for my label sheets doesn't match any of the choices in the Label Options dialog box

    You can still print your labels. You just have to do some customizing.

    1. Measure the labels on the sheet that you have, and note the measurements and how many labels fit on a single sheet.

      Note: Measure the labels carefully. The actual label size might be smaller than the size that is indicated by the label manufacturer. For example, a 1-by-2-inch label might actually be 15/16-inch high and 1 15/16-inches wide.

    2. In the Product number list, click a label type that is similar in size to your labels.

      If you don't see the label type that you want in the Product number list, you may be able to use another of the listed labels, or you can create your own custom-sized labels.

    3. Click Details, and then compare the label dimensions and the number of labels per sheet (for labels printed on laser and ink-jet printers) or the number of columns on the label form (for labels printed on dot-matrix printers).

    4. Do one of the following:

      • If the dimensions and label layout match those of your labels, use the selected label.

      • If the dimensions and layout do not match yours, click Cancel, and continue to step 5.

    5. In the Label Options dialog box, click the printer type (either Continuous-feed printers or Page printers), and then click New Label.

    6. Type a name in the Label name box, select the height, width, margins, and other options for your label, and then click OK.

      The new label appears in the Other/Custom category. The next time you use your custom labels, be sure to select Other/Custom in the Label vendors list.

  7. After you select the options that you want, click OK.

  8. Under Print, click Full page of the same label.

  9. Do one of the following:

    1. To send the labels directly to the printer without previewing them, click Print.

    2. To preview the labels so that you can edit them or add graphics to them and save them in a reusable document, click New Document.

      Word creates a document that contains the sheet of labels. Word uses a table to lay out the labels. If you don't see lines separating the labels, click the Layout tab under Table Tools, and then in the Table group, click View Gridlines.

      You can make any changes that you want to each label, including changes to the text formatting and color scheme, just as you would with the content of any table in Word. When you finish, save or print the labels the same way that you save or print any document in Word.

  1. Start Word.

    A blank document opens by default. Leave it open. If you close it, the commands in the next step are not available.

  2. On the Mailings tab, in the Create group, click Labels.

    Office 2010  Ribbon

  3. Leave the Address box blank.

  4. To select the label type and other options, click Options.

  5. In the Label Options dialog box, make your choices, and then click OK.

    Label Options dialog box

    1 The type of printer that you are using to print labels

    2 The supplier that produced your label sheets

    3 The number that corresponds to the product number listed on your package of label sheets

    The product number for my label sheets doesn't match any of the choices in the Label Options dialog box

    You can still print your labels. You just have to do some customizing.

    1. Measure the labels on the sheet that you have, and note the measurements and how many labels fit on a single sheet.

      Note: Measure the labels carefully. The actual label size might be smaller than the size that is indicated by the label manufacturer. For example, a 1-by-2-inch label might actually be 15/16-inch high and 1 15/16-inches wide.

    2. In the Product number list, click a label type that is similar in size to your labels.

      If you don't see the label type that you want in the Product number list, you may be able to use another of the listed labels, or you can create a new label size.

    3. Click Details, and then compare the label dimensions and the number of labels per sheet (for labels printed on laser and ink-jet printers) or the number of columns on the label form (for labels printed on dot-matrix printers).

    4. Do one of the following:

      • If the dimensions and label layout match those of your labels, use the selected label.

      • If the dimensions and layout do not match yours, click Cancel, and continue to step 5.

    5. In the Label Options dialog box, click the printer type (either Continuous-feed printers or Page printers), and then click New Label.

    6. Type a name in the Label name box, select the height, width, margins, and other options for your label, and then click OK.

      The new label appears in the Other/Custom category. The next time you use your custom labels, be sure to select Other/Custom in the Label vendors list.

  6. After you select the options that you want, click OK.

  7. Under Print, click Full page of the same label.

  8. Click New Document.

    Word creates a document that contains the sheet of labels. Word uses a table to lay out the labels. If you don't see lines separating the labels, click the Layout tab under Table Tools, and then in the Table group, click View Gridlines.

  9. Type the text that you want in each label, and make any changes that you want to the formatting and color scheme, by using the options on the Home and Page Layout tabs. When you are finished, save or print the labels the same way that you save or print any document in Word.

  1. Start Word.

    A blank document opens by default. Leave it open. If you close it, the commands later in this procedure are not available.

  2. Click File > Options > Advanced.

  3. Scroll down, and under General, type your return address in the Mailing address box.

    Word stores the address so that you can use it whenever you want to insert your return address in a document.

  4. Click OK.

  5. On the Mailings tab, in the Create group, click Labels.

    Office 2010  Ribbon

  6. Select the Use return address check box.

  7. If you want to format the text in the Address box, select the text, right-click the selected text, and then click Font or Paragraph on the shortcut menu.

  8. To select the label type and other options, click Options.

  9. In the Label Options dialog box, make your choices, and then click OK.

    Label Options dialog box

    1 The type of printer that you are using to print labels

    2 The supplier that produced your label sheets

    3 The number that corresponds to the product number listed on your package of label sheets

    The product number for my label sheets doesn't match any of the choices in the Label Options dialog box

    You can still print your labels. You just have to do some customizing.

    1. Measure the labels on the sheet that you have, and note the measurements and how many labels fit on a single sheet.

      Note: Measure the labels carefully. The actual label size might be smaller than the size that is indicated by the label manufacturer. For example, a 1-by-2-inch label might actually be 15/16-inch high and 1 15/16-inches wide.

    2. In the Product number list, click a label type similar in size to your labels.

      If you don't see the label type that you want in the Product number list, you may be able to use another of the listed labels, or you can create your own custom-sized labels.

    3. Click Details, and then compare the label dimensions and the number of labels per sheet (for labels printed on laser and ink-jet printers) or the number of columns on the label form (for labels printed on dot-matrix printers).

    4. Do one of the following:

      • If the dimensions and label layout match those of your labels, use the selected label.

      • If the dimensions and layout do not match yours, click Cancel, and continue to step 5.

    5. In the Label Options dialog box, click the printer type (either Continuous-feed printers or Page printers), and then click New Label.

    6. Type a name in the Label name box, select the height, width, margins, and other options for your label, and then click OK.

      The new label appears in the Product number list as Label name - Custom. The label is also placed in the Other/Custom category. The next time you use your custom labels, be sure to select Other/Custom in the Label vendors list.

  10. Under Print, do one of the following:

    1. To print just one label, click Single label. Then in the Row and Column boxes, enter the row number and column number that match the label sheet location of the label that you want to print. Click Print.

      row and column lists in single label area in envelopes and labels dialog box with arrows pointing to labels on sheet

    2. To print a whole sheet of labels, under Print, click Full page of the same label, and then do one of the following:

      • To send the labels directly to the printer without previewing them, click Print.

      • To preview the labels so that you can edit them and save them in a reusable document, click New Document.

        Word creates a document that contains the sheet of labels. Word uses a table to lay out the labels. If you don't see lines separating the labels, click the Layout tab under Table Tools, and then in the Table group, click View Gridlines.

        You can make any changes that you want to each label, including changes to the text formatting and color scheme, just as you would with the content of any table in Word. When you finish, save or print the labels the same way that you save or print any document in Word.

If you want to add a graphic to labels that you are printing on a page printer (rather than a continuous-feed printer), you must add it to each label.

  1. Position the cursor where you want to place the graphic.

  2. On the Insert tab, in the Illustrations group, click Picture or Clip Art.

    office 14 ribbon

  3. Locate the graphic, and then double-click it.

  4. If you need to resize the graphic, select it and then drag a corner sizing handle to the size that you want. Dragging a corner handle maintains the height-to-width ratio.

  5. If the graphic does not align with the label text, right-click the graphic and do the following:

    1. Point to Text Wrapping, and then click More Layout Options.

    2. Click the Text Wrapping tab, and under Wrapping style, click Square.

    3. Click the Picture Position tab, and under Horizontal, click Alignment, and then click the alignment that you want: Left, Centered, or Right.

    4. Click OK.

  6. To add the graphic to each label, select the graphic and press CTRL+C.

  7. In the next label on the sheet, place the cursor where you want the graphic and press CTRL+V.

  8. Repeat the previous step for each label on the sheet.

  1. Start Word.

    A blank document opens by default. Leave it open. If you close it, the commands in the next step are not available.

  2. On the Mailings tab, in the Create group, click Labels.

    Office 2010  Ribbon

  3. In the Address box, type the text that you want.

    If you want to create a label for an address that is stored in the electronic address book that is installed on your computer, click Insert Address Button image .

  4. To change the formatting, select the text, right-click the selected text, and then click Font or Paragraph on the shortcut menu.

  5. To select the label type and other options, click Options.

  6. In the Label Options dialog box, make your choices, and then click OK.

    Label Options dialog box

    1 The type of printer that you are using to print labels

    2 The supplier that produced your label sheets

    3 The number that corresponds to the product number listed on your package of label sheets

    The product number for my label sheets doesn't match any of the choices in the Label Options dialog box

    You can still print your labels. You just have to do some customizing.

    1. Measure the labels on the sheet that you have, and note the measurements and how many labels fit on a single sheet.

      Note: Measure the labels carefully. The actual label size might be smaller than the size that is indicated by the label manufacturer. For example, a 1-by-2-inch label might actually be 15/16-inch high and 1 15/16-inches wide.

    2. In the Product number list, click a label type that is similar in size to your labels.

      If you don't see the label type that you want in the Product number list, you may be able to use another of the listed labels, or you can create a new label size.

    3. Click Details, and then compare the label dimensions and the number of labels per sheet (for labels printed on laser and ink-jet printers) or the number of columns on the label form (for labels printed on dot-matrix printers).

    4. Do one of the following:

      • If the dimensions and label layout match those of your labels, use the selected label.

      • If the dimensions and layout do not match yours, click Cancel, and continue to step 5.

    5. In the Label Options dialog box, click the printer type (either Continuous-feed printers or Page printers), and then click New Label.

    6. Type a name in the Label name box, select the height, width, margins, and other options for your label, and then click OK.

      The new label appears in the Other/Custom category. The next time you use your custom labels, be sure to select Other/Custom in the Label vendors list.

  7. After you select the options that you want, click OK.

  8. Under Print, click Single label. Then in the Row and Column boxes, enter the numbers that match the numbers of rows and columns on the label sheet for the label that you want to print.
    row and column lists in single label area in envelopes and labels dialog box with arrows pointing to labels on sheet

  9. Click Print.

  1. Start Word.

    A blank document opens by default. Leave it open. If you close it, the commands in the next step are not available.

  2. On the Mailings tab, in the Create group, click Labels.

    Office 2010  Ribbon

  3. In the Address box, type the text that you want.

    If you want to create a label for an address that is stored in the electronic address book that is installed on your computer, click Insert Address Button image .

  4. To change the formatting, select and right-click the text, and then click Font or Paragraph on the shortcut menu.

    All of the labels on the sheet will use the formatting that you specify.

  5. To select the label type and other options, click Options.

  6. In the Label Options dialog box, make your choices, and then click OK.

    Label Options dialog box

    1 The type of printer that you are using to print labels

    2 The supplier that produced your label sheets

    3 The number that corresponds to the product number listed on your package of label sheets

    The product number for my label sheets doesn't match any of the choices in the Label Options dialog box

    You can still print your labels. You just have to do some customizing.

    1. Measure the labels on the sheet that you have, and note the measurements and how many labels fit on a single sheet.

      Note: Measure the labels carefully. The actual label size might be smaller than the size that is indicated by the label manufacturer. For example, a 1-by-2-inch label might actually be 15/16-inch high and 1 15/16-inches wide.

    2. In the Product number list, click a label type that is similar in size to your labels.

      If you don't see the label type that you want in the Product number list, you may be able to use another of the listed labels, or you can create your own custom-sized labels.

    3. Click Details, and then compare the label dimensions and the number of labels per sheet (for labels printed on laser and ink-jet printers) or the number of columns on the label form (for labels printed on dot-matrix printers).

    4. Do one of the following:

      • If the dimensions and label layout match those of your labels, use the selected label.

      • If the dimensions and layout do not match yours, click Cancel, and continue to step 5.

    5. In the Label Options dialog box, click the printer type (either Continuous-feed printers or Page printers), and then click New Label.

    6. Type a name in the Label name box, select the height, width, margins, and other options for your label, and then click OK.

      The new label appears in the Other/Custom category. The next time you use your custom labels, be sure to select Other/Custom in the Label vendors list.

  7. After you select the options that you want, click OK.

  8. Under Print, click Full page of the same label.

  9. Do one of the following:

    1. To send the labels directly to the printer without previewing them, click Print.

    2. To preview the labels so that you can edit them or add graphics to them and save them in a reusable document, click New Document.

      Word creates a document that contains the sheet of labels. Word uses a table to lay out the labels. If you don't see lines separating the labels, click the Layout tab under Table Tools, and then in the Table group, click View Gridlines.

      You can make any changes that you want to each label, including changes to the text formatting and color scheme, just as you would with the content of any table in Word. When you finish, save or print the labels the same way that you save or print any document in Word.

  1. Start Word.

    A blank document opens by default. Leave it open. If you close it, the commands in the next step are not available.

  2. On the Mailings tab, in the Create group, click Labels.

  3. Leave the Address box blank.

  4. To change the formatting, select and right-click the text, and then click Font or Paragraph on the shortcut menu.

  5. To select the label type and other options, click Options.

  6. In the Label Options dialog box, make your choices, and then click OK.

    Label Options dialog box

    1 The type of printer that you are using to print labels

    2 The supplier that produced your label sheets

    3 The number that corresponds to the product number listed on your package of label sheets

  7. Under Print, click Full page of the same label.

  8. Click New Document.

    Word creates a document that contains the sheet of labels. Word uses a table to lay out the labels. If you don't see lines separating the labels, click the Layout tab under Table Tools, and then in the Table group, click View Gridlines.

  9. Type the text that you want in each label, and make any changes that you want to the formatting and color scheme, by using the options on the Home and Page Layout tabs. When you are finished, save or print the labels the same way that you save or print any document in Word.

I can't find the product number in the list

You can still print your labels. You just have to do some customizing.

  1. Measure the labels on the sheet that you have, and note the measurements and how many labels fit on a single sheet.

    Note: Measure the labels carefully. The actual label size might be smaller than the size that is indicated by the label manufacturer. For example, a 1-by-2-inch label might actually be 15/16-inch high and 1 15/16-inches wide.

  2. In the Product number list, click a label type that is similar in size to your labels.

    If you don't see the label type that you want in the Product number list, you may be able to use another of the listed labels, or you can create a new label size.

  3. Click Details, and then compare the label dimensions and the number of labels per sheet (for labels printed on laser and ink-jet printers) or the number of columns on the label form (for labels printed on dot-matrix printers).

  4. Do one of the following:

    • If the dimensions and label layout match those of your labels, use the selected label.

    • If the dimensions and layout do not match yours, click Cancel, and continue to step 5.

  5. In the Label Options dialog box, click the printer type (either Continuous-feed printers or Page printers), and then click New Label.

  6. Type a name in the Label name box, select the height, width, margins, and other options for your label, and then click OK.

    The new label appears in the Product number list as Label name - Custom. The label is also placed in the Other/Custom category. The next time you use your custom labels, be sure to select Other/Custom in the Label vendors list.

  1. Start Word.

    A blank document opens by default. Leave it open. If you close it, the commands later in this procedure are not available.

  2. Click the Microsoft Office button Microsoft Office Button , and then click Word Options > Advanced.

  3. Scroll down, and under General, type your return address in the Mailing address box.

    Word stores the address so that you can use it whenever you want to insert your return address in a document.

  4. Click OK.

  5. On the Mailings tab, in the Create group, click Labels.

  6. Select the Use return address check box.

  7. If you want to format the text in the Address box, select the text, right-click the selected text, and then click Font or Paragraph on the shortcut menu.

  8. To select the label type and other options, click Options.

  9. In the Label Options dialog box, make your choices, and then click OK.

    Label Options dialog box

    1 The type of printer that you are using to print labels

    2 The supplier that produced your label sheets

    3 The number that corresponds to the product number listed on your package of label sheets

    The product number for my label sheets doesn't match any of the choices in the Label Options dialog box

    You can still print your labels. You just have to do some customizing.

    1. Measure the labels on the sheet that you have, and note the measurements and how many labels fit on a single sheet.

      Note: Measure the labels carefully. The actual label size might be smaller than the size that is indicated by the label manufacturer. For example, a 1-by-2-inch label might actually be 15/16-inch high and 1 15/16-inches wide.

    2. In the Product number list, click a label type similar in size to your labels.

      If you don't see the label type that you want in the Product number list, you may be able to use another of the listed labels, or you can create your own custom-sized labels.

    3. Click Details, and then compare the label dimensions and the number of labels per sheet (for labels printed on laser and ink-jet printers) or the number of columns on the label form (for labels printed on dot-matrix printers).

    4. Do one of the following:

      • If the dimensions and label layout match those of your labels, use the selected label.

      • If the dimensions and layout do not match yours, click Cancel, and continue to step 5.

    5. In the Label Options dialog box, click the printer type (either Continuous-feed printers or Page printers), and then click New Label.

    6. Type a name in the Label name box, select the height, width, margins, and other options for your label, and then click OK.

      The new label appears in the Product number list as Label name - Custom. The label is also placed in the Other/Custom category. The next time you use your custom labels, be sure to select Other/Custom in the Label vendors list.

  10. Under Print, do one of the following:

    1. To print just one label, click Single label. Then in the Row and Column boxes, enter the row number and column number that match the label sheet location of the label that you want to print. Click Print.

    2. To print a whole sheet of labels, under Print, click Full page of the same label, and then do one of the following:

      • To send the labels directly to the printer without previewing them, click Print.

      • To preview the labels so that you can edit them and save them in a reusable document, click New Document.

        Word creates a document that contains the sheet of labels. Word uses a table to lay out the labels. If you don't see lines separating the labels, click the Layout tab under Table Tools, and then in the Table group, click View Gridlines.

        You can make any changes that you want to each label, including changes to the text formatting and color scheme, just as you would with the content of any table in Word. When you finish, save or print the labels the same way that you save or print any document in Word.

If you want to add a graphic to labels that you are printing on a page printer (rather than a continuous-feed printer), you must add it to each label:

  1. Position the cursor where you want to place the graphic.

  2. On the Insert tab, in the Illustrations group, click Picture or Clip Art.

    Word Ribbon Image

  3. Locate the graphic and then double-click it.

  4. If you need to resize the graphic, select it and then drag a corner sizing handle to the size that you want. Dragging a corner handle maintains the height-to-width ratio.

  5. If the graphic does not align with the label text, right-click the graphic and do the following:

    1. Point to Text Wrapping, and then click More Layout Options.

    2. Click the Text Wrapping tab, and under Wrapping style, click Square.

    3. Click the Picture Position tab, and under Horizontal, click Alignment, and then click the alignment that you want: Left, Centered, or Right.

    4. Click OK.

      Note: If you want to use the same picture for each label, you can adjust the size and placement in the first label, and then copy the picture and paste it into your other labels.

See also

Create and print labels using mail merge

Use Avery templates in Word