Hi, like title says i need to take every 4 rows to average them and this average data put into 4 rows as a specific single result. I tried my formula in tab.1 but didnt work.
My data needs to looks like tab2. Btw table2 continues to 175 000 rows.Can someone help me what i doing wrong? Thanks for help/advice. Crg
table.1
what i tried with my formula
, but unfortunately i get this :
table.2
what i want:
My data needs to looks like tab2. Btw table2 continues to 175 000 rows.Can someone help me what i doing wrong? Thanks for help/advice. Crg
table.1
what i tried with my formula
Excel Formula:
=AVERAGE(FILTER(A1:A4;MOD(COLUMN(A1:A4);4)))
A_col(Values) | B_col(values) |
4 | 5 |
6 | 7,5 |
4 | 8,5 |
6 | 10,5 |
14 | 11 |
10 | 10 |
12 | 10 |
8 | 8 |
table.2
what i want:
A_col(Values) | B_col(Results) |
4 | 5 |
6 | 5 |
4 | 5 |
6 | 5 |
14 | 11 |
10 | 11 |
12 | 11 |
8 | 11 |