I am having a heck of a time trying to size a simple pie chart in Excel using VFP. This should be simple but I think it is a case of not knowing the proper VFP commands. Here is what the excel macro gives:
ActiveSheet.ChartObjects("Chart 1").Activate
ActiveChart.ChartArea.Select
ActiveSheet.Shapes("Chart 1").ScaleWidth 1.12, msoFalse, _
msoScaleFromBottomRight
How do I convert this to VBA? For some reason it never finds the "shapes" I identify (Chart 1)
Can someone help me?
Thanks.
ActiveSheet.ChartObjects("Chart 1").Activate
ActiveChart.ChartArea.Select
ActiveSheet.Shapes("Chart 1").ScaleWidth 1.12, msoFalse, _
msoScaleFromBottomRight
How do I convert this to VBA? For some reason it never finds the "shapes" I identify (Chart 1)
Can someone help me?
Thanks.