Hi. I am editing the data labels to include text based on a data series. The text includes small paragraph descriptions which are being cut off arbitrarily. The rest of the text does not reappear upon resizing the text box.
This is my code:
ActiveChart.FullSeriesCollection(2).Select
ActiveChart.SetElement (msoElementDataLabelCallout)
ActiveChart.FullSeriesCollection(2).DataLabels.Select
Application.CutCopyMode = False
ActiveChart.SeriesCollection(2).DataLabels.Format.TextFrame2.TextRange. _
InsertChartField msoChartFieldRange, "=Data!$F$2:$F$173", 0
Selection.ShowRange = True
Anyone know how to get the full text to show or why excel is cutting it off?
Edit: Ok it seems like excel has a 255 character limit for data labels. Is there anyway to skirt this?
This is my code:
ActiveChart.FullSeriesCollection(2).Select
ActiveChart.SetElement (msoElementDataLabelCallout)
ActiveChart.FullSeriesCollection(2).DataLabels.Select
Application.CutCopyMode = False
ActiveChart.SeriesCollection(2).DataLabels.Format.TextFrame2.TextRange. _
InsertChartField msoChartFieldRange, "=Data!$F$2:$F$173", 0
Selection.ShowRange = True
Anyone know how to get the full text to show or why excel is cutting it off?
Edit: Ok it seems like excel has a 255 character limit for data labels. Is there anyway to skirt this?
Last edited: