DreamKid Posted May 23, 2005 Posted May 23, 2005 I'm trying to put values in the a chart legend in excel. I refer to a few websites & found out the method below but it seems like "Value" is not a member of LegendEntries. MSDN only provide samples of chrt.Legend.LegendEntries(i).Font.blah... which clearly are not helpful at all. For i = 1 To chrt.Legend.LegendEntries.Count() chrt.Legend.LegendEntries(i).Value = xws.Range("B" & i + 3).Value Next Please advise. Thank you. Quote
herilane Posted May 23, 2005 Posted May 23, 2005 The legend entries are based on the series names. As far as I know, you cannot edit the legend entries directly; you'll have to change the series names instead. Quote
Recommended Posts