Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Changing the PivotTable CommandText

Status
Not open for further replies.

mmogul

IS-IT--Management
Dec 1, 2003
218
0
0
US
I am attempting to programmatically change the CommandText (sql statement) for a pivot table. My code works if all pivot tables in the workbook have a unique ConnectionName. But if more than one pivot tables use the same ConnectionName, I get an error:

Application defined or object defined error.
Object variable or with block variable not set.

In the code shown below, I have 4 worksheets. Worksheet 1 has 2 pivot tables using unique ConnectionNames. Worksheet 2-4 each have one pivottable and they share the same Connection Name.

Here is my code. Appreciate any help.

Code:
Dim ws as worksheet
Dim sConnections as string
Dim pvt as pivottable


For Each ws In ThisWorkbook.Worksheets
    For Each pvt In ws.PivotTables
        sConnectionName = pvt.PivotCache.WorkbookConnection
        '***
        '  Change query CommandText
        Select Case sConnectionName
            Case "Connection3":
                pvt.PivotCache.CommandText = "Select * FROM qryTypesWithMapping ;"
            Case "Connection5":
                pvt.PivotCache.CommandText = "Select * FROM qryTypesWithMapping_Drivers ;"
           
            Case "Connection2":
                pvt.PivotCache.CommandText = "Select * FROM [qry_RandD_Region] ;"
            Case Else:
                MsgBox "The connection name was not found"
        End Select
        
    Next pvt
Next ws
 
Here's just a thought, and not sure off-hand if it's even possible. What about programatically changing the 2nd table or pivot table in each sheet, and then going back and trying this process? Sounds silly, but maybe it'll work?



"But thanks be to God, which giveth us the victory through our Lord Jesus Christ." 1 Corinthians 15:57
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top