gpt4 book ai didi

vba - 如何使用 vba 将单元格值作为图表标题

转载 作者:行者123 更新时间:2023-12-04 22:03:10 27 4
gpt4 key购买 nike

我想将单元格 A1 作为图表标题。我使用了下面给出的代码。但它没有奏效。

ActiveChart.SetElement (msoElementChartTitleAboveChart)
ActiveChart.ChartTitle.Text = "HSI of" & Cells(1, 1).Value

我希望图表标题为“HSI of”“*******单元格值(在我的情况下为 A1)**********”

最佳答案

请设置HasTitle图表属性为 True在分配标题之前。

ActiveChart.HasTitle = True
ActiveChart.SetElement (msoElementChartTitleAboveChart)
ActiveChart.ChartTitle.Text = "HSI of " + Cells(1, 1).Value

关于vba - 如何使用 vba 将单元格值作为图表标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30771726/

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