Worksheet.PasteSpecial Method

Excel Developer Reference

Pastes the contents of the Clipboard onto the sheet, using a specified format. Use this method to paste data from other applications or to paste data in a specific format.

Syntax

expression.PasteSpecial(Format, Link, DisplayAsIcon, IconFileName, IconIndex, IconLabel, NoHTMLFormatting)

expression   A variable that represents a Worksheet object.

Parameters

Name Required/Optional Data Type Description
Format Optional Variant A string that specifies the Clipboard format of the data.
Link Optional Variant True to establish a link to the source of the pasted data. If the source data isn’t suitable for linking or the source application doesn't support linking, this parameter is ignored. The default value is False.
DisplayAsIcon Optional Variant True to display the pasted as an icon. The default value is False.
IconFileName Optional Variant The name of the file that contains the icon to use if DisplayAsIcon is True.
IconIndex Optional Variant The index number of the icon within the icon file.
IconLabel Optional Variant The text label of the icon.
NoHTMLFormatting Optional Variant True to remove all formatting, hyperlinks, and images from HTML. False to paste HTML as is. The default value is False.

Remarks

Bb179201.vs_note(en-us,office.12).gif  Note
NoHTMLFormatting will only matter when Format = “HTML”. In all other cases, NoHTMLFormatting will be ignored.

You must select the destination range before you use this method.

This method may modify the sheet selection, depending on the contents of the Clipboard.

Example

This example pastes a Microsoft Word document object from the Clipboard to cell D1 on Sheet1.

Visual Basic for Applications
  Worksheets("Sheet1").Range("D1").Select
ActiveSheet.PasteSpecial format:= _
    "Microsoft Word 8.0 Document Object"

This example pastes the same Microsoft Word document object and displays it as an icon.

Visual Basic for Applications
  Worksheets("Sheet1").Range("F5").Select
ActiveSheet.PasteSpecial _
        Format:="Microsoft Word 8.0 Document Object", _
        DisplayAsIcon:=True

See Also