LayoutBlankLine Property Example
This example adds a blank line after the state field in the first PivotTable report on the active worksheet.
With ActiveSheet.PivotTables("PivotTable1") _
.PivotFields("state")
.LayoutBlankLine = True
End With