I need to take the average of every 2 point increment, my data is in columns "a", as an example , and the average in column "b"
a1 b1=0
a2 b2=a1
a3 b3=average(a1,a2)
a4 b4=average(a2,a3)
a5 b5=average(a3,a4)
...
I need an excel formula or macro to do so , any ideas?
=AVERAGE(A1,A2)
into cell B3 and drag it too the bottom of your range (or double click the drag handle in the bottom right corner of cell B3). – stucharo