Reduction of data points used for a chart

O

Ole Hansen

I have exported a large number of data points from a chromatography data collection program into Excell. I have about 12000 x,y points. (Time versus milliVolts
How can I reduce the amount of data points before making a chart? I would like, for example, to use only every tenth point for the chart.
 
J

Jon Peltier

Ole -

Suppose your data is in column C, starting in C2. In D2, put this formula

=OFFSET(C$2,(ROW()-1)*10-1,0)

And drag it down as far as you need. This puts the 10th, 20th, etc,
points into column D. If you're plotting X-Y data, you need to do this
for both X and Y. Use this new data for the chart.

- Jon
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top