SOLVED

Help with function average

Copper Contributor

Please, I'm needing to create a sequence of averages. for example, I need the first to go from A1: A5, right after A6: A10, A11: A15 .... How do I get Excel to understand this formatting?

3 Replies
best response confirmed by Marcus1997 (Copper Contributor)
Solution

@Marcus1997 

You may try something like this...

=AVERAGE(OFFSET($A$1,(ROW(A1)-1)*5,0,5))

and then copy it down.

Thanks for your help. It was very efficient for me.
You're welcome @Marcus1997! Glad it worked as desired.
1 best response

Accepted Solutions
best response confirmed by Marcus1997 (Copper Contributor)
Solution

@Marcus1997 

You may try something like this...

=AVERAGE(OFFSET($A$1,(ROW(A1)-1)*5,0,5))

and then copy it down.

View solution in original post