Method ‘CurrentPage’ of object ‘Pivot ‘Failed “

A

Austin

Hello,

I am migrating my excel macros from 2003 to 2007. The excel macro was
working fine with 2003. But now when I run a particular report, in 2007
sometimes I am getting the error like “Run time Error 2157417848(80010108)
Method ‘CurrentPage’ of object ‘Pivot ‘Failed “
I don’t know what the reason for this error is. Sometimes only am getting
this error and sometimes the macro is working very fine.


Private Sub RTS_Change()
Dim tempStr As String
tempStr = RTS.text
ColumnRTS = "J"

Application.ScreenUpdating = False

If (tempStr <> "All") Then
Module1.PasteValuesInPricelistColumn tempStr, ColumnRTS
Sheets("History Report").Select
ActiveSheet.Unprotect
ActiveSheet.PivotTables("HistoryPivot").PivotFields("R T S").CurrentPage =
tempStr
Module1.pivotTableUpdate
Else
Sheets("History Report").Select
ActiveSheet.Unprotect
Module1.pivotTableUpdate
End If
End Sub


In the above code, in "RTS.text" RST is the name of the combobox Im using in
the report. I have removed the multiple use of "ActiveSheet." and gave the
sheet name directly itself, then also the same error. I have ran the report
for the same criteria, then again am getting error sometimes and sometimes
not. tempStr will always contain the value as "(All)". Please provide me help
on this issue, as am hangup with this for the past 1 month.
Thanks in advance.
-Austin
 
Joined
Aug 27, 2010
Messages
2
Reaction score
0
Question to Austin

Hi Austin, Have you foudn solution to your issue? I am having same issue with no solution
 

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