Can someone tell me why the following to attempts to assign RowFields to a PivotTable (PT) are not equivalent? Or better yet, why can I not use an Array Variable to assign RowFields?
Dim PT As PivotTable
...
Dim HeaderArray() As String
...
PT.AddFields RowFields:=HeaderArray
PT.AddFields...