Assuming that your signal of interest is the slowly changing stuff, I did the following.
1. Converted the xls file into a tab-delimited txt file so I wouldn't have to try to process the xls file.
2. Read the txt file in as a spreadsheet string and then convert that string into a 2-D string array
3. Truncate the first 22 rows so that the remaining array contains only the data of interest.
4. Convert the 2-D string array into a 2-D double array.
5. Since there are 6 pairs of lines, I process them identically with a for-next loop.
6. I filter the y data line by first subtracting out the DC component, passing through the filter, adding in the DC component. This allows the filter to settle faster, but the first few points are still affected by the filter initializing.
7. I display the results.
I have attached the file as Labview 7.1.1.
This is a simple filtering process, but if I have filtered out something that you needed to keep you will have to change the cutoff and the order. You will also not be able to use the loop if the channels cannot be filtered the same way.
Randall Pursley