Select values from cell range, different range output

NaHo

New Member
Joined
Apr 30, 2021
Messages
1
Office Version
  1. 365
Platform
  1. Windows
Hello all,
I can not figure this out.

In column A there are 1000 values, I need to find max of every 10 values. As a resulted output I need: B1=max(A1:A10), B2=max(A11:A20), etc to cell B100.
What function should I use to make this easier?

Thank you!
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
Hi & welcome to MrExcel.
How about
+Fluff 1.xlsm
AB
1111183
287176
317389
419194
529
6104
7183
818
960
1058
1124
123
13151
1494
15120
16106
17176
1819
1938
2087
2165
2232
2318
2417
2533
2623
2749
2845
2964
3089
31125
32171
33126
34194
35113
3692
37125
38172
39192
4078
Lists
Cell Formulas
RangeFormula
B1:B4B1=MAX(INDEX($A$1:$A$1000,SEQUENCE(10,,ROWS(B$1:B1)*10-9)))
 
Upvote 0
Solution
Another Method.
At B1 Input:
VBA Code:
=MAX(OFFSET($A$1,(ROW()-1)*10,0,10,1))
And Drag it down.
 
Upvote 0

Forum statistics

Threads
1,214,590
Messages
6,120,421
Members
448,961
Latest member
nzskater

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