Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

excel 2000: scatterplot help

Status
Not open for further replies.

add39

Technical User
Jul 24, 2003
19
US
I have created a scatter plot w/lots of pts and instead of having different shapes for each entry I want them all to be a black circle. Is there an easy way to format all the points at once?
 
Try referencing the chart in VBA module using
Code:
Charts("Chart1").SeriesCollection(1).Points(1).
to reference the collection of points and then apply the formatting to the options after
Code:
.Points(1).
.

You can find referenc to this by looking up "Points Collection Object" in Excel.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top