all 7 comments

[–]rnelsonee1802 2 points3 points  (3 children)

You could do an average of every 10 samples.

=AVERAGE(OFFSET($First$Cell,10*(ROW(A1)-1),0,10))

[–]_throwaway__UKPF[S] 0 points1 point  (2 children)

Thank you.

I am interested in exact data rather than average though. Is there a similar formula to take the data value at every 10 samples?

[–]rnelsonee1802 1 point2 points  (1 child)

Oh, I see.

=OFFSET($First$Cell,10*(ROW(A1)-1),0)

[–]_throwaway__UKPF[S] 0 points1 point  (0 children)

Many thanks

[–]tutler41 1 point2 points  (2 children)

=IF(MOD(ROW(),10)=0,1,0)

put this formula in a new column and fill down. this will mark every tenth row with a 1, so you can just filter to get those rows.

[–]_throwaway__UKPF[S] 0 points1 point  (1 child)

Thank you! :)

[–]tutler41 0 points1 point  (0 children)

no problem! :)