Capture Index of the selected bar in a bar chart.

Xenaa

New Member
Joined
Mar 31, 2018
Messages
2
Hi,

Is there any way in VBA to capture the Index of the selected bar in a bar graph. My intention is User will select one bar and run a macro which will take the Index as input and accordingly perform its activity.
Any help is much appreciated.

- Xenaa
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Welcome to the Board

Are you using a chart sheet or an embedded worksheet chart? The example code below is for the first case; for the latter you will need a class module.


Code:
' chart module
Private Sub Chart_Select(ByVal ElementID&, ByVal Arg1&, ByVal Arg2&)
If ElementID = 3 Then
    Select Case Arg2
        Case -1
            MsgBox "All bars were selected."
        Case Else
            MsgBox "Bar #" & Arg2 & " was selected."
    End Select
End If
End Sub
 
Upvote 0

Forum statistics

Threads
1,223,157
Messages
6,170,420
Members
452,325
Latest member
BlahQz

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top