Scatter chart for two data sets

junebug

Board Regular
Joined
Apr 4, 2003
Messages
110
I have column A filled with 300 names. Column B has the persons quality score %. Column C has that persons AHT time. I am trying to create a scatter chart that will display the distribution of people into four quads. The people with high quality and low AHT etc. Can anyone help me. Maybe I am not explaining it well.

Thanks
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
You mean similar to a Boston Matrix?
 
Upvote 0
I am not familiar with a Boston Matrix but that could be it. Can you explain how I would do that?
 
Upvote 0
OK

Instead of just selecting a range and forming a graph from it you do Series

Click the Chart Icon

Choose XY Scatter

Click Next

Choose the Series Tab click Add

Reference Name to persons name
Reference X axis to Quality score percentage
Reference Y axis to ANT Time

You'll need to repeat this process for each point. As you have 300 records to plot I am hoping someone might be able to adjust this code to help

Code:
Sub UpdateBMChart()
    ActiveChart.PlotArea.Select
    ActiveChart.SeriesCollection.NewSeries
    ActiveChart.SeriesCollection(2).XValues = "=Sheet1!R2C2"
    ActiveChart.SeriesCollection(2).Values = "=Sheet1!R2C3"
    ActiveChart.SeriesCollection(2).Name = "=Sheet1!R2C1"
End Sub

HTH


Dave
 
Upvote 0
Upvote 0
I'm glad an expert responded, Cheers Jon
 
Upvote 0

Forum statistics

Threads
1,214,591
Messages
6,120,432
Members
448,961
Latest member
nzskater

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top