Excel 2016 Box Plot - VBA to Remove Inner Points

erock24

Well-known Member
Joined
Oct 26, 2006
Messages
1,163
The 2016 Box plot graph allows user to show "Inner Points". Has anyone figured out if VBA can check/uncheck this option? No code gets generated with the recorder.

Thanks for time and help,
-Erock
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
I don't have 2016, so I cannot help directly, but the following has helped me in similar circumstances:
Select the chart.
Run this VBAcode:
Code:
Sub CheckChart()
    Dim x
    Set x = ActiveSheet.ChartObjects(1)
    Stop
End Sub
With the code stopped, explore the object tree structure in the VBE locals window to see if the inner points branch exists and then experiment with manipulating it.
Please post back if you find the answer to your question.
 
Upvote 0
Cool Trick. I'm not seeing anything, which is a bummer, but thanks for the tip.
 
Upvote 0
One other exploratory tip is to open the VBE and click F2 to get the 'Object Browser' activated. You can then search libraries with terms you feel apply to your situation. This may lead you to an object you can manipulate.
 
Upvote 0

Forum statistics

Threads
1,214,593
Messages
6,120,435
Members
448,961
Latest member
nzskater

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