Skip to content

Latest commit

 

History

History
42 lines (20 loc) · 839 Bytes

7f00d151-9f92-a3b3-c95f-60c0600cf594.md

File metadata and controls

42 lines (20 loc) · 839 Bytes

PivotTable.ErrorString Property (Excel)

Returns or sets a String value that represents the string displayed in cells that contain errors when the DisplayErrorString property is True .

Syntax

expression . ErrorString

expression A variable that represents a PivotTable object.

Remarks

The default value for this property is an empty string ("").

Example

This example displays a hyphen in cells in the specified PivotTable report that contain errors.

With Worksheets(1).PivotTables("Pivot1") 
 .ErrorString = "-" 
 .DisplayErrorString = True 
End With

See also

Concepts

PivotTable Object

Other resources

PivotTable Object Members