LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #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


 
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
XY Scatter-problems with large data records DataGeek Excel Discussion (Misc queries) 1 May 28th 08 09:53 PM
Problems creating a line chart or scatter graph Natty Charts and Charting in Excel 1 April 2nd 08 06:18 PM
XY Scatter JICDB Excel Worksheet Functions 4 August 2nd 06 04:12 PM
xy scatter help cchupa Charts and Charting in Excel 2 June 17th 05 05:07 PM
Scatter Graph - Data Label Problems TBD Charts and Charting in Excel 2 January 16th 05 05:08 PM


All times are GMT +1. The time now is 03:14 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"