ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
查看: 1722|回复: 8

[求助] PPT里我写了个VBA,竟然出现这种情况

[复制链接]

TA的精华主题

TA的得分主题

发表于 2014-8-23 14:22 | 显示全部楼层 |阅读模式
所有的代码如下:其功能就是让柱形图标的每根柱子能够变颜色
Dim cht As Chart
    Dim chtData As ChartData
    Dim wb As Object
    Dim ws As Object
    Dim shp As Shape

Sub creatchart()
    Set shp = ActivePresentation.Slides(1).Shapes.AddChart(xlBarClustered, 20, 50, 600, 400)
    If shp.Type = msoChart Then
        Set cht = shp.Chart
    End If
    If cht Is Nothing Then Exit Sub
    Set wb = cht.ChartData.Workbook
    Set ws = wb.worksheets(1)
    ws.listobjects(1).resize ws.Range("A1:B5")
    ws.Range("B1").Value = "sldjlkad"
    ws.Range("A2:B2").Value = Array("American", 14.8)
    ws.Range("A3:B3").Value = Array("China", 5.3)
    ws.Range("A4:B4").Value = Array("Japan", 5)
    ws.Range("A5:B5").Value = Array("German", 3.5)
    cht.ApplyDataLabels xlDataLabelsShowValue
    'ActivePresentation.Slides(1).ChartObjects("aa").SeriesCollection(1).Points(1).Interior.ColorIndex = 3
    cht.SeriesCollection(1).Points(1).Interior.ColorIndex = 5
'    wb.Application.Quit
End Sub

Sub ss()
'   Dim shp1 As Shape
'   Dim cht1 As Chart
'   Dim wb As Object
   Set shp = ActivePresentation.Slides(1).Shapes(1)
   Set cht = shp.Chart
   cht.SeriesCollection(1).Points(3).Interior.ColorIndex = 1 问题出在这个语句上,无论这个值怎么改变,柱形都是红色的。3才是红色,可换成1照样也还是红色。
End Sub


求高手帮忙解决

TA的精华主题

TA的得分主题

发表于 2014-8-23 15:02 | 显示全部楼层
上个附件看盾

TA的精华主题

TA的得分主题

 楼主| 发表于 2014-8-23 16:00 | 显示全部楼层
mmwwdd 发表于 2014-8-23 15:02
上个附件看盾

showColorVba.rar (56.56 KB, 下载次数: 16)

TA的精华主题

TA的得分主题

发表于 2014-8-23 17:19 | 显示全部楼层
这里的ColorIndex属性无效,需要使用Color属性,也许算个小BUG吧
  1. Sub ss()
  2.    Set cht = Nothing
  3.    Set shp = ActivePresentation.Slides(1).Shapes(2)
  4.    Set cht = shp.Chart
  5.    Set p = cht.SeriesCollection(1).Points(3)
  6.    cht.SeriesCollection(1).Points(3).Interior.Color = RGB(0, 0, 255)
  7.    cht.ApplyDataLabels xlDataLabelsShowValue
  8. End Sub
复制代码

TA的精华主题

TA的得分主题

发表于 2023-2-27 20:01 | 显示全部楼层
taller 发表于 2014-8-23 17:19
这里的ColorIndex属性无效,需要使用Color属性,也许算个小BUG吧


肯定是在 shp.chart出错。Shp as Shape???

dd.jpg
dd1.jpg

TA的精华主题

TA的得分主题

发表于 2023-2-28 12:48 | 显示全部楼层



如何通过Excel VBA修改Powerpoint Chart ChartData | 码农家园  https://www.codenong.com/55490180/




  1. Sub ModifyChartData()

  2. Dim pptApp As Object
  3. Dim pptPres As Presentation

  4. Set pptApp = GetObject(,"PowerPoint.Application")
  5. Set pptPres = pptApp.ActivePresentation


  6. pptPres.Slides(4).Shapes("Diagramm1").Chart.ChartTitle.Text ="Sales Overview"
  7. pptPres.Slides(4).Shapes("Diagramm1").Chart.ChartData.Activate
  8. Chart.ChartData.Workbook.Worksheets("Tabelle1").Range("B2:B5").Value = 50
  9. Workbooks.Close

  10. End Sub
复制代码



dd.jpg


Ppt2007为什么没有Chart???

TA的精华主题

TA的得分主题

发表于 2023-2-28 15:19 | 显示全部楼层
在Ppt2019,直接定义Dim Chart,简单方便。
Ppt2007和Ppt2003要绕了一个大弯子-----------OLEFormat.

  1. Sub M()

  2.     Dim Pres As Presentation
  3.     Dim Sld As Slide
  4.     Dim Shp As Shape, ShpRng As ShapeRange
  5.     Dim oChart As Chart, ChartArr()
  6.     Dim oForm As OLEFormat, Wk As Workbook
  7.         Set Shp = Application.ActivePresentation.Slides(1).Shapes(1)
  8.         Debug.Print Shp.Name
  9.         Shp.Select msoTrue
  10.         Set oForm = ActiveWindow.Selection.ShapeRange.OLEFormat
  11.         Debug.Print TypeName(oForm.Object)
  12.         Set Wk = oForm.Object
  13.         ReDim ChartArr(Wk.Charts.Count - 1)

  14.         For ii = 1 To Wk.Charts.Count
  15.             'Debug.Print oChart.Name, Wk.Name
  16.             Set ChartArr(ii - 1) = Wk.Charts(ii)
  17.         Next ii
  18.         For ii = 0 To UBound(ChartArr)
  19.               Set oChart = ChartArr(ii)
  20.               With oChart
  21.                    Debug.Print .Name,
  22.                    Debug.Print .HasDataTable, .HasLegend, .HasTitle
  23.               End With
  24.         Next ii
  25. End Sub
复制代码

TA的精华主题

TA的得分主题

发表于 2023-2-28 19:33 | 显示全部楼层
dd.jpg


闹了天,原来是Office安装的问题。

  1. Private Sub del()
  2.     Dim Sld As Slide
  3.     Dim Shp As Shape
  4.     Dim oChart As Chart
  5.          For Each Sld In Application.ActivePresentation.Slides
  6.                 For Each Shp In Sld.Shapes
  7.                       Set oChart = Shp.Chart
  8.                       Debug.Print Shp.Name, Sld.Name,
  9.                       With oChart
  10.                            Debug.Print .Name, .HasDataTable, .HasLegend, .HasTitle,
  11.                            Debug.Print .SeriesCollection.Count
  12.                       End With
  13.                 Next Shp
  14.          Next Sld
  15. End Sub
复制代码


TA的精华主题

TA的得分主题

发表于 2023-2-28 19:35 | 显示全部楼层
dd.jpg


闹了天,原来是Office安装的问题。

  1. Private Sub del()
  2.     Dim Sld As Slide
  3.     Dim Shp As Shape
  4.     Dim oChart As Chart
  5.          For Each Sld In Application.ActivePresentation.Slides
  6.                 For Each Shp In Sld.Shapes
  7.                       Set oChart = Shp.Chart
  8.                       Debug.Print Shp.Name, Sld.Name,
  9.                       With oChart
  10.                            Debug.Print .Name, .HasDataTable, .HasLegend, .HasTitle,
  11.                            Debug.Print .SeriesCollection.Count
  12.                       End With
  13.                 Next Shp
  14.          Next Sld
  15. End Sub
复制代码


您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2024-11-18 22:25 , Processed in 0.038408 second(s), 11 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表