• 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.

Non-numeric values in Bubble Charts

gossip_boi

New Member

Attachments

  • HCSTM_BubbleChart.xlsx
    11.2 KB · Views: 10
Several ways of doing this.

1. Select Data Label that you want to change
2. Go to formula bar and type in value

Alternately you can create helper row/column and add cell reference. Make sure you have =SheetName!$A$1 format for the reference.

You can also use VBA to assign different values/text for datalabels.
Something like below.
Code:
ActiveChart.FullSeriesCollection(2).Points(1).DataLabel.Select
    Selection.Formula = "=Bubbles!R4C3"
 
I forgot about the easier method.

Select Data Label and Right click and choose "Format DataLabel"

Then Check off "Value From Cells" and select desired range.

upload_2015-10-15_9-21-27.png

See attached with sample range/label.
 

Attachments

  • HCSTM_BubbleChart_s.xlsx
    12.8 KB · Views: 12
Back
Top