Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I recorded a macro creating and formatting a pivot table.
Created a command Button with an On_Click event When the code runs, it fails at the indicated point below. MsgBox shows that there is no seriescollection, even though, obviously, there was when the macro was recorded. Unchanged data source. Must have something to do with the ApplyCustomType. Any Ideas? Thanks for the help! Code Below Private Sub CommandButton1_Click() ' ' Chart Macro ' Macro recorded 5/19/2005 by Lee Hunter ' ' Keyboard Shortcut: Ctrl+Shift+C ' Dim MyWkBk As String, MyWkSht As String, Tabledef As String MyWkBk = ActiveWorkbook.Name MyWkSht = ActiveWorkbook.Worksheets(1).Name Tabledef = "[" & MyWkBk & "]" & MyWkSht & "!R3C3" With ActiveWorkbook.PivotCaches.Add(SourceType:=xlExter nal) .Connection = Array(Array( _ "ODBC;DSN=MS Access Database;DBQ=S:\1310\Quality\Metrics\Trip.mdb;Defa ultDir=S:\1310\Quality\Metrics;DriverId=25;FIL=MS Access;MaxBuf" _ ), Array("ferSize=2048;PageTimeout=5;")) .CommandType = xlCmdSql .CommandText = Array( _ "SELECT ArrChtInp.Trip, ArrChtInp.Stat, ArrChtInp.`Num of Occ`" & Chr(13) & "" & Chr(10) & "FROM `S:\1310\Quality\Metrics\Trip`.ArrChtInp ArrChtInp" & Chr(13) & "" & Chr(10) & "ORDER BY ArrChtInp.Trip" _ ) .CreatePivotTable TableDestination:=Tabledef, TableName:= _ "PivotTable1", DefaultVersion:=xlPivotTableVersion10 End With ActiveSheet.PivotTables("PivotTable1").AddFields RowFields:="Trip", _ ColumnFields:="Stat" ActiveSheet.PivotTables("PivotTable1").PivotFields ("Num of Occ").Orientation = _ xlDataField Charts.Add ActiveChart.Location Whe=xlLocationAsNewSheet ActiveChart.ApplyCustomType ChartType:=xlBuiltIn, TypeName:= _ "Columns with Depth" MsgBox ActiveChart.SeriesCollection.Count ***** Now shows 0 ****** ************ ActiveChart.SeriesCollection(2).Select ****** Fails here With Selection.Border .Weight = xlThin .LineStyle = xlAutomatic End With Selection.InvertIfNegative = False With Selection.Interior .ColorIndex = 6 .Pattern = xlSolid End With ActiveChart.SeriesCollection(3).Select With Selection.Border .Weight = xlThin .LineStyle = xlAutomatic End With Selection.InvertIfNegative = False With Selection.Interior .ColorIndex = 3 .Pattern = xlSolid End With ActiveChart.SeriesCollection(4).Select With Selection.Border .Weight = xlThin .LineStyle = xlAutomatic End With Selection.InvertIfNegative = False With Selection.Interior .ColorIndex = 4 .Pattern = xlSolid End With ActiveChart.SeriesCollection(1).Select With Selection.Border .Weight = xlThin .LineStyle = xlAutomatic End With Selection.InvertIfNegative = False With Selection.Interior .ColorIndex = 1 .Pattern = xlSolid End With End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
using Debra Dalgleish toolbar code | Excel Discussion (Misc queries) | |||
Re-sizing C. Boxes using Debra Dalgleish | Excel Discussion (Misc queries) | |||
Debra Dalgleish Question | Excel Worksheet Functions | |||
Bless you, Debra Dalgleish & Pejo Sjoblom! | Excel Worksheet Functions | |||
Debra Dalgleish | Excel Discussion (Misc queries) |