These little VBA language differences between Excel and Access are getting very anoying. I am at the last step (hopefully) of getting my line chart to look how I need it to, but I can't get a data label to show on the first marker only. Here is what I have so far. I have attempted every itiration I can find online and all get the same "Error 438: Object doesn't support this property or method"
With Me.ChartSpace.Charts(0).SeriesCollection(0)
.Line.Color = sc1
.Line.Weight = 6
.marker.Size = 8
.marker.Style = 2
sName = .Name
csName = Right(sName, Len(sName) - 8)
.Caption = csName
.Points(1).DataLabel.Text = csName
End With
Again, thanks for your assistance.