Formatting charts, problem with deselection.

F

Fries

Hello all,

I wrote a Sub to format all charts equally once selected and running
the procedure:


Sub ChartMods()

If ActiveChart Is Nothing Then
MsgBox "No chart selected"
Exit Sub
End If
With ActiveChart
.ChartArea.Font.Name = "Arial"
.ChartArea.Font.FontStyle = "Regular"
.ChartArea.Font.Size = 16
End With

End Sub

Then I made the following call:

Private Sub CommandButton1_Click()
Call ChartMods

End Sub

But the problem is: when I select the chart and then click the button,
the chart gets deselected and the button becomes active in stead of
the chart. What Am I Overlooking?

thanks in advance.

Fries
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top