• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

plase help me with graphic

Hi @pakilprogramador

Because you have used your Y and Z axis you are a little cornered. One option would be to add some text boxes which change as you click on each option button. I have attached an example though with the table in play I am not sure of the value of adding this information to the chart.

I had a look at your coding and it seems overly complex. You can simplify it to the following.

Code:
Private Sub OptionButton1_Click()
    [B5:B14] = 1: [E5:E14].NumberFormat = "0.0%"
End Sub
 
Private Sub OptionButton2_Click()
    [B5:B14] = 0: [E5:E14].NumberFormat = "0,000"
End Sub

Hope this helps.

Take care

Smallman
 

Attachments

  • ayudagraficoV1.xlsm
    33.3 KB · Views: 9
You are already showing thos two items in your chart. I am not sure what you mean. Can you elaborate further.

Smallman
 
yeah, of course , I want to build a graph that calculate monthly growth in quantity and percentages

please any idea
 

Attachments

  • ayudagraficoV1.xlsm
    31.7 KB · Views: 1
Back
Top