View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
Ruben Ruben is offline
external usenet poster
 
Posts: 31
Default Pivottable code problem

Thanks for your help, see my other post for the cause of my problem.

Ruben

"Roger Govier" wrote:

Hi Ruben

The code runs perfectly fine for me in both XL2003 and XL2007
I changed the names of the sheets to Sheet1 and Sheet2 respectively for
testing on my system.

--
Regards
Roger Govier

"Ruben" wrote in message
...
Hello,

I have a problem with making a pivottable from my data with visual basic.
When running the code visual basic says that there is an invalid procedure
call or an invalid argument. The part of the code that is wrong according
to
visual basic is the uppermost part(from beginning till
'xlpivottableversion10'):

Sub CreatingPivottable
ActiveWorkbook.PivotCaches.Add(SourceType:=xlDatab ase, SourceData:= _
"'Bewerkte data'!R1C1:R10000C18").CreatePivotTable
TableDestination:= _
"Blad1!R3C1", TableName:="Draaitabel8", DefaultVersion:= _
xlPivotTableVersion10

'....(other part of code)...

End Sub

'Bewerkte data' is the name of the sheet with the data that is used for
making the pivottable and 'blad1' is the name of the sheet where the
pivottable has to be placed (this sheet exists before I start the code).
'Draaitabel8' is the name of the pivottable. I start the code with a
button
on the sheet 'Bewerkte data'.
I hope the problem is clear, if it is not let me know. It would be great
if
someone could help me!

Ruben