Propiedad PivotField.DataType (Excel)
Devuelve un valor XlPivotFieldDataType que representa el tipo de datos en el campo Tabla dinámica.
Sintaxis
expresión. Datatype
Expresión Variable que representa un objeto PivotField .
Ejemplo:
En este ejemplo se muestra el tipo de datos del campo denominado ORDER_DATE.
Set pvtTable = Worksheets("Sheet1").Range("A3").PivotTable
Select Case pvtTable.PivotFields("ORDER_DATE").DataType
Case Is = xlText
MsgBox "The field contains text data"
Case Is = xlNumber
MsgBox "The field contains numeric data"
Case Is = xlDate
MsgBox "The field contains date data"
End Select
Soporte técnico y comentarios
¿Tiene preguntas o comentarios sobre VBA para Office o esta documentación? Vea Soporte técnico y comentarios sobre VBA para Office para obtener ayuda sobre las formas en las que puede recibir soporte técnico y enviar comentarios.