View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.charting
PO PO is offline
external usenet poster
 
Posts: 66
Default Problems with XY-Scatter

Excel 2003

Hi,

I have set up an employee table with around 1000 employees in a worksheet.
Each record consists of the following columns:

Name
Grade (1-5)
Trend (1-3)

I want Grade on the y axis and Trend on the x axis. Each dot in the chart
represents 1 employee. To accomplish this I loop through the table adding
each employee (the code below is just a simple example):

Sub PopulateChart()

Dim I1 As Integer
Dim sc As Object

ActiveSheet.ChartObjects("Diagram 6").Activate

For I1 = 2 To 1000 Step 1
Set sc = ActiveChart.SeriesCollection.NewSeries


sc.XValues = "=Sheet1!R" & I1 & "C3"
sc.Values = "=Sheet1!R" & I1 & "C4"
sc.Name = "=Sheet1!R" & I1 & "C2"
Next I1

End Sub

This works fine but the problem is that there's a limit and I can only add
255 series to the chart.
Normally you don't want to see all 1000 employees plotted in the chart but
it's useful to get an overview and for finding groups of ppl that deviate
somehow from the rest of the population. The next step would for example be
to apply a filter to only view the employees with average grade (3) and a
negative trend.(1).

Is there another way to populate the chart so all employees are fitted? Or
could I maybe use another chart to accomplish the same thing?

Regards
Pete