Systematic elimination of data
Posted by Michael on November 02, 2001 12:02 PM
I'm working on a spreadsheet that has far too much data. I have 16,000 data points and I would like to reduce this to about 1,000 data points. I need a fast method for eliminating 15 data points and then keeping one, eliminating 15 data points, and keeping one, etc., etc. I tried to set up an IF, THEN statement by dividing each number by 16, using the ROUND command to make the number a whole number and then subracting the original, non-rounded number from it. If the value was not equal to zero, nothing was added to the spread sheet. If the number was equal to zero, the data point was left. The problem with this method was that the cells were not really empty and thus I could not compress the data from 16,000 separate cells down to 1,000. When I tried to plot the data, all the blank cells showed up as zeros. Does anyone know of a simple technique to reduce the data set quickly?