ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 请教散点图的数据系列X轴(ActiveChart.SeriesCollection(i - 1).XValues)应该怎么写

[复制链接]

TA的精华主题

TA的得分主题

发表于 2015-5-31 09:40 | 显示全部楼层 |阅读模式
本帖最后由 coverne 于 2015-5-31 16:19 编辑

请教散点图想要用vba添加多个数据系列,系列的数据系列X轴(ActiveChart.SeriesCollection(i - 1).XValues)想取到C列的某一区间,区间的起始row在右侧的单元格里面,应该怎么写,查了一下,总是不行,请各位指教,多谢了

name.rar

50.4 KB, 下载次数: 89

TA的精华主题

TA的得分主题

发表于 2015-5-31 16:01 | 显示全部楼层
see if help you


    ActiveChart.SeriesCollection(i - 1).XValues = "=sheet6!" & wb.Range(wb.Cells(wb.Cells(i, 6), 3), wb.Cells(wb.Cells(i, 7), 3)).Address
    ActiveChart.SeriesCollection(i - 1).Values = "=sheet6!" & wb.Range(wb.Cells(wb.Cells(i, 6), 2), wb.Cells(wb.Cells(i, 7), 2)).Address

TA的精华主题

TA的得分主题

 楼主| 发表于 2015-5-31 16:16 | 显示全部楼层
本帖最后由 coverne 于 2015-5-31 17:31 编辑

不好意思,excel 2010 还是会提示对象变量或with块变量未设置

TA的精华主题

TA的得分主题

发表于 2015-5-31 17:37 | 显示全部楼层
Sub ADDSERIES()

Set wb = ThisWorkbook.Worksheets("Sheet6")
wb.Activate
For I = 2 To wb.Range("E65535").End(xlUp).Row
    ActiveSheet.ChartObjects("图表 1").Activate
    ActiveChart.PlotArea.Select
    ActiveChart.SeriesCollection.NewSeries
    ActiveChart.SeriesCollection(I - 1).Name = wb.Cells(I, 5).Value
    ActiveChart.SeriesCollection(1).XValues = "=Sheet6!" & wb.Range(wb.Cells(wb.Cells(I, 6), 2), wb.Cells(wb.Cells(I, 7), 2)).Address
    ActiveChart.SeriesCollection(I - 1).Values = "=sheet6!" & wb.Range(wb.Cells(wb.Cells(I, 6), 3), wb.Cells(wb.Cells(I, 7), 3)).Address
Next
   
   
End Sub

TA的精华主题

TA的得分主题

发表于 2023-3-4 09:12 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
用数组
.SeriesCollection(3).Values = "={20,0,-10,1,12}"

  1. Sub del()
  2.    Dim oBj As Object
  3.    Dim oChart As Chart
  4.        Set oChart = Application.ActiveChart
  5.        With oChart
  6.            .SeriesCollection(1).Name = "T1"
  7.            .SeriesCollection(1).Values = "={20,12,-10,1,2}"
  8.            .SeriesCollection(2).Name = "T2"
  9.            .SeriesCollection(2).Values = "={-20,-12,10,1,2}"
  10.            .SeriesCollection(3).Name = "T4"
  11.            .SeriesCollection(3).Values = "={20,0,-10,1,12}"
  12.       
  13.        End With
  14. End Sub
复制代码

TA的精华主题

TA的得分主题

发表于 2023-3-6 21:08 | 显示全部楼层
  1. Private Sub Del5()
  2.     Dim xChart As Chart
  3.     Dim ShpRng As ShapeRange
  4.     Dim Str, Ss
  5.         Set ShpRng = Application.ActiveWindow.Selection.ShapeRange
  6.         Set xChart = ShpRng(1).Chart
  7.         Debug.Print xChart.Name
  8.         With xChart
  9.              Str = .SeriesCollection(1).DataLabels(1).Text '.Point(1).Label.Text
  10.             
  11.              Ss = .SeriesCollection(1).XValues
  12.              Str = "兰州日出-" & Ss(1) & "日出=" & Str
  13.              .SeriesCollection(1).DataLabels(1).Text = Str
  14.             
  15.              Stop
  16.         End With
  17. End Sub
复制代码
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2024-11-18 19:51 , Processed in 0.041974 second(s), 9 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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