PivotItem.SourceNameStandard property (Excel)

Returns a String that represents the PivotTable items' source name in standard English (United States) format settings. Read-only.

Syntax

expression.SourceNameStandard

expression A variable that represents a PivotItem object.

Remarks

This property is used when an item has a localized version and its SourceNameStandard property value differs from the SourceName property value, such as with date formatting.

Example

This example displays the source name for the sixth item on the fifth field of the active PivotTable. The example assumes that a PivotTable exists on the active worksheet and that the data source contains at least five fields and six items per field.

Sub CheckSourceNameStandard() 
 
 Dim pvtTable As PivotTable 
 Dim pvtField As PivotField 
 Dim pvtItem As PivotItem 
 
 Set pvtTable = ActiveSheet.PivotTables(1) 
 Set pvtField = pvtTable.PivotFields(5) 
 Set pvtItem = pvtField.PivotItems(6) 
 
 ' Display source name. 
 MsgBox "The source name is: " & pvtItem.SourceNameStandard 
 
End Sub

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.