gpt4 book ai didi

vba - Powerpoint VBA - 为数据标签设置数据范围

转载 作者:行者123 更新时间:2023-12-03 17:02:46 24 4
gpt4 key购买 nike

我不知道如何使用 VBA 为数据标签设置数据范围。Powerpoint 也没有录制功能。

谁能告诉我如何使用 VBA 来做这件事? enter image description here

最佳答案

实现的代码如下:

Dim myChart As Chart
Dim mySerCol As SeriesCollection
Dim strRange As String

strRange = "=Sheet1!$F$2:$F$5" 'To hold the range for the new labels

Set myChart = ....[put in code to get the appropriate chart]
Set mySerCol = myChart.SeriesCollection(i)
mySerCol.ApplyDataLabels 'Turn on the datalabels for this series

'The next line sets the range to get the values from
mySerCol.Format.TextFrame2.TextRange.InsertChartField msoChartFieldRange _
, strRange, 0
mySerCol.ShowRange = True 'Show the values from the range
mySerCol.ShowValue = False 'Do not show the actual values of the points

请注意,这只会对其中一个系列执行此操作。要执行其他操作,请在 myChart.SeriesCollections(i) 行中循环遍历 i。

关于vba - Powerpoint VBA - 为数据标签设置数据范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34424584/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com