Results 1 to 3 of 3

How do I only apply labels to the first data in a range?

Threaded View

  1. #1
    Registered User
    Join Date
    04-22-2013
    Location
    Calgary, Alberta
    MS-Off Ver
    Excel 2010
    Posts
    9

    How do I only apply labels to the first data in a range?

    So I basically have like 5-10 data series and I only want one label (and rest of the markers editting I have) for the first data point from each series. I'm pretty nooby at VBA so below is the code I've made from googling and learning on my own... I tried to call SeriesCollection(r).Points(1) but that wouldn't work...


    Private Sub Chart_Activate()
        MsgBox "Macro Activated: Workover Labels Applied"
    
    ActiveChart.Axes(xlCategory).MaximumScale = Sheet1.Range("B16").Value + (Sheet1.Range("B16").Value / 20)
    
    With Chart5
        For r = 2 To SeriesCollection.Count
    
            With SeriesCollection(r)
                .ApplyDataLabels
                .DataLabels.ShowSeriesName = True
                .DataLabels.ShowValue = False
                .DataLabels.Position = xlLabelPositionLeft
        
                .MarkerStyle = 3
                .MarkerSize = 2
                .MarkerForegroundColor = RGB(0, 0, 0)
                .MarkerBackgroundColor = RGB(0, 0, 0)
            End With
        Next r
    
    
    End With
    End Sub

    Thanks guys!
    Last edited by davesexcel; 05-02-2013 at 07:35 PM. Reason: Code tags required when supplying VBA code, please read the forum rules.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1