Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Peter Sailing by
 
Posts: n/a
Default Is there a way of attaching data labels from a text range to dat.

Is there a way of attaching data labels from a text range to data markers in
xy plot chart. I'm sure I could do it in Lotus 123
  #2   Report Post  
Debra Dalgleish
 
Posts: n/a
Default

You can use Rob Bovey's XY Chart Labeler to add labels. It's a free
add-in that you can download from his web site:

http://www.appspro.com/Utilities/ChartLabeler.htm


Peter Sailing by wrote:
Is there a way of attaching data labels from a text range to data markers in
xy plot chart. I'm sure I could do it in Lotus 123



--
Debra Dalgleish
Excel FAQ, Tips & Book List
http://www.contextures.com/tiptech.html

  #3   Report Post  
John Mansfield
 
Posts: n/a
Default

In addition to the chart labeler that Deborah noted, you can also use this
macro if for some reason you don't want/need to install an add-in:

Sub AddLabels()
Dim RngLabels As Range
Dim Ser As Series
Dim i As Long
If TypeName(Selection) = "Series" Then
Set Ser = Selection
Set RngLabels = Application.InputBox(prompt:="Select the label
range:", Type:=8)
Ser.HasDataLabels = True
For i = 1 To Ser.Points.Count
Ser.Points(i).DataLabel.Text = RngLabels(i)
Next i
Else
MsgBox "Select a series in a chart."
End If
End Sub

Add the macro to a standard module. Select the chart and then run the
macro. In the dialog box, add the reference to the data source like
"Sheet1!A1:A5".
----
Regards,
John Mansfield
http://www.pdbook.com


"Peter Sailing by" wrote:

Is there a way of attaching data labels from a text range to data markers in
xy plot chart. I'm sure I could do it in Lotus 123

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
VBA to change size of data labels? Jason Weiss Charts and Charting in Excel 2 March 24th 05 08:24 PM
Getting data labels right.... 43fan Charts and Charting in Excel 1 March 18th 05 06:09 PM
Excel should let me align data labels in different series (Excel . dlearndeltondo Charts and Charting in Excel 0 February 10th 05 08:45 PM
Pulling data from 1 sheet to another Dave1155 Excel Worksheet Functions 1 January 12th 05 05:55 PM
Help with pivot charts and data labels [email protected] Charts and Charting in Excel 1 December 15th 04 03:08 PM


All times are GMT +1. The time now is 08:00 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"