Pivot table causing buffer overflow

  • Thread starter Alexandre Brisebois
  • Start date
A

Alexandre Brisebois

I am currently using excel 2000.

I was given a previously built spread sheet, and was told to add 2
columns
tothe data, when I do so all my pivots are fine except one. This new
pivot loads
properly through the wizard, but when I try to update the data I get a
memory location read error. (buffer over flow)

has anyone ever experienced something like this? any known solutions?

best regards,
Alexandre Brisebois
 
C

Carim

Hi Alex,

May be you should have a look into your pivotcache and its size ...

HTH
Cheers
Carim
 
C

Carim

Something like :
Sub Test()
Dim ws As Worksheet
Dim pt As PivotTable
Set ws = ActiveSheet
Set pt = ws.PivotTables(1)
MsgBox "Pivot table cache memory is currently " & _
Format$(pt.PivotCache.MemoryUsed, "#,##0") & " bytes."
End Sub

HTH
Carim
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top