Excel VBA中的数据标签

时间:2012-06-22 03:14:51

标签: excel vba excel-vba

我实际编写的代码允许用户从五个字段中查询数据,并使用五个字段中的两个绘制散点图。如果我点击一些随机数据点,我希望它显示所有相应的五个数据字段。这可能吗?

<子> P.S。我无法上传任何照片,因为我是新来的。

1 个答案:

答案 0 :(得分:0)

我有一个图表代码,当我点击它时会显示一个文本框,其中包含该系列的详细信息。我可以提供基础知识,你可以试着用它来玩它。

注意:如果您有一个代码位于其后面的图表工作表,则此方法有效。不确定如何在excel表上使用多个图表。

Private Sub Chart_MouseDown(ByVal Button As Long, ByVal Shift As Long, ByVal x As Long, ByVal y As Long)

Dim ElementID as Long, Arg1 as Long, Arg2 as Long

Me.GetChartElement x, y, ElementID, Arg1, Arg2

If ElementID = xlSeries Then 'Making sure that a series was selected

'Do some code here, using any or all of the variables gathered in the Me.GetChartElement

Else

End If

End Sub