Hi all, Is there a way in origin to delete alternate rows?. Actually i have 2 sets of data. One of the data's X axis increment is 0.02 and the others is 0.04. number of points in one data is double the other but i have to plot two on the same graph. So i want to delete alternate data points. How to delete or is there a way arround to tackle this? . Thx in advance.
First, there is nothing to prevent you from plotting both sets of data in the same graph. Origin will show two points for each .04 interval an one for each .02 interval.
You can use the Extract Worksheet Data tool found on the Worksheet menu to get only the 0.04 intervals. Assuming A and C are my aliases in that dialog, this works: mod(nint(100*A),4)==0 AND mod(nint(100*C),4)==0 This keeps the original data intact.