Jump 3 Cells + AVERAGE -> DRAG

Nihal

New Member
Joined
Aug 21, 2015
Messages
24
Good afternoon all,

I'm having trouble dealing with a sheet I'm doing.

Basically I have 3 shift's per day. What I need is data compilation, were the shifts turn to days.

Ex.
- What I have (Sheet1)
Day 1

A1 - 1.5
A2 - 1.4
A3 - 1.6
Day 2
A4 - 1.5
A5 - 1.5
A6 - 1.6

- What I need (Sheet2)
Day 1
Average (A1,A2,A3)
Day 2
Average (A4,A5,A6)

__

This file is quite big, so, how do i drag it so it jumps three cells for each new cell??

Firstly, thanks for your attention. :)
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
Hopefully I understood you correctly...

A1:C6

1.51.5
1.41.533333
1.6
1.5
1.5
1.6

<tbody>
</tbody>


C1, copied down:

=AVERAGE(INDEX($A$1:$A$6,ROWS(C$1:C1)*3-3+1):INDEX($A$1:$A$6,ROWS(C$1:C1)*3))

Adjust the ranges, accordingly.

Hope this helps!
 
Last edited:
Upvote 0
Z column in "Análises" sheet, from Z4 from Z96, summarized to actual sheet, starting at B6.

Z4:Z6 (análises) = B6 (actual sheet)
Z7:Z9 (análises) = B7 (actual sheet)

=AVERAGE(INDEX(Análises!$Z$4:$Z$96;ROWS(B$6:B6)*3-3+1):INDEX((Análises!$Z$4:$Z$96;ROWS(B$6:B6)*3))

What am I doing wrong?? :/ I'm a newbie here!! Thank you for your help ^^
 
Upvote 0
You have an extra opening bracket. It looks like it should be...

=AVERAGE(INDEX(Análises!$Z$4:$Z$96;ROWS(B$6:B6)*3-3+1):INDEX(Análises!$Z$4:$Z$96;ROWS(B$6:B6)*3))

Does this help?
 
Upvote 0

Forum statistics

Threads
1,215,633
Messages
6,125,925
Members
449,274
Latest member
mrcsbenson

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top